project/tests/unit/models/application-test.js
Martin Donnelly e06e53e5bd whats wrong?
2016-04-06 16:53:06 +01:00

13 lines
318 B
JavaScript

import { moduleForModel, test } from 'ember-qunit';
moduleForModel('application', 'Unit | Model | application', {
// Specify the other units that are required for this test.
needs: []
});
test('it exists', function(assert) {
let model = this.subject();
// let store = this.store();
assert.ok(!!model);
});