import {describe, it} from 'mocha'; import {expect} from 'chai'; import {setupComponentTest} from 'ember-mocha'; describe('Unit: Component: gh-app', function () { setupComponentTest('gh-app', { unit: true // specify the other units that are required for this test // needs: ['component:foo', 'helper:bar'] }); it('renders', function () { // creates the component instance let component = this.subject(); expect(component._state).to.equal('preRender'); // renders the component on the page this.render(); expect(component._state).to.equal('inDOM'); }); });