Skip to content

Instantly share code, notes, and snippets.

@amk221
Created December 10, 2014 13:33
Show Gist options
  • Save amk221/fd3fddffa02dbf4bbe9f to your computer and use it in GitHub Desktop.
Save amk221/fd3fddffa02dbf4bbe9f to your computer and use it in GitHub Desktop.
Ember.js: Pause/delay acceptance tests
Ember.Test.registerAsyncHelper('waitFor', function(app, ms) {
Ember.run.later($.noop, ms);
return app.testHelpers.wait();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment