Strain name markup
This commit is contained in:
parent
e4f01246c2
commit
f7c39a50f3
9 changed files with 35 additions and 6 deletions
19
tests/unit/pods/components/strain-name/component-test.js
Normal file
19
tests/unit/pods/components/strain-name/component-test.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
import { moduleForComponent, test } from 'ember-qunit';
|
||||
|
||||
moduleForComponent('strain-name', 'Unit | Component | strain name', {
|
||||
// Specify the other units that are required for this test
|
||||
// needs: ['component:foo', 'helper:bar'],
|
||||
unit: true
|
||||
});
|
||||
|
||||
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');
|
||||
});
|
Reference in a new issue