Creating an Integration Test with Ember.js
eviltrout eviltrout
4.54K subscribers
7,930 views
68

 Published On Jun 26, 2014

This short screencast shows how to scaffold an application using ember-cli and then create a few integration tests to make sure it's working properly.

It includes some boilerplate code that you might want to copy and paste if you're following along at home:

```
import startApp from 'vault/tests/helpers/start-app';
var App;

module('Integration - Secret', {
setup: function() {
App = startApp();
},
teardown: function() {
Ember.run(App, 'destroy');
}
});
```

show more

Share/Embed