Ember has a powerful built-in testing utility but its native mode is to zip through a test as quickly as possible and then close its little fake window... based on my experience with Robot, I know sometimes it's very useful to be able to "pause" a test, to take a look around the DOM's current state.
Anyway, there's a pauseTest() helper for just this event.
You may want to bump up the "test timeout value" in tests/test-helper.js:
QUnit.config.testTimeout = 120000; //two minutes in millis
No comments:
Post a Comment