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/pods/components/genbank-url/component-test.js
Matthew Dillon e4f01246c2 Genbank URL
2015-06-11 13:57:35 -08:00

19 lines
531 B
JavaScript

import { moduleForComponent, test } from 'ember-qunit';
moduleForComponent('genbank-url', 'Unit | Component | genbank url', {
// 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');
});