This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/tests/unit/components/measurements/measurement-row-test.js
2015-03-19 10:02:42 -08:00

21 lines
504 B
JavaScript

import {
moduleForComponent,
test
} from 'ember-qunit';
moduleForComponent('measurements/measurement-row', {
// 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');
});