2016-11-24 01:50:57 +03:00
|
|
|
import {describe, it} from 'mocha';
|
2017-05-29 21:50:03 +03:00
|
|
|
import {expect} from 'chai';
|
2016-11-24 01:50:57 +03:00
|
|
|
import {setupComponentTest} from 'ember-mocha';
|
2015-06-13 17:34:09 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
describe('Unit: Component: gh-app', function () {
|
|
|
|
setupComponentTest('gh-app', {
|
2015-10-06 19:31:03 +03:00
|
|
|
unit: true
|
|
|
|
// specify the other units that are required for this test
|
|
|
|
// needs: ['component:foo', 'helper:bar']
|
2016-11-24 01:50:57 +03:00
|
|
|
});
|
2015-06-13 17:34:09 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
it('renders', function () {
|
|
|
|
// creates the component instance
|
|
|
|
let component = this.subject();
|
2015-06-13 17:34:09 +03:00
|
|
|
|
2016-11-24 01:50:57 +03:00
|
|
|
expect(component._state).to.equal('preRender');
|
|
|
|
|
|
|
|
// renders the component on the page
|
|
|
|
this.render();
|
|
|
|
expect(component._state).to.equal('inDOM');
|
|
|
|
});
|
|
|
|
});
|