Ember data handle errors

This commit is contained in:
Matthew Dillon 2015-04-27 10:24:42 -08:00
parent d890a62c6f
commit f902c7500b
4 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,21 @@
import {
moduleForComponent,
test
} from 'ember-qunit';
moduleForComponent('display-error', {
// Specify the other units that are required for this test
// needs: ['component:foo', 'helper:bar']
});
test('it renders', function(assert) {
assert.expect(2);
// Creates the component instance
var component = this.subject();
assert.equal(component._state, 'preRender');
// Renders the component to the page
this.render();
assert.equal(component._state, 'inDOM');
});