15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
import {
|
|
moduleForModel,
|
|
test
|
|
} from 'ember-qunit';
|
|
|
|
moduleForModel('measurement', {
|
|
// Specify the other units that are required for this test.
|
|
needs: ['model:strain']
|
|
});
|
|
|
|
test('it exists', function(assert) {
|
|
var model = this.subject();
|
|
// var store = this.store();
|
|
assert.ok(!!model);
|
|
});
|