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

13 lines
310 B
JavaScript

import { moduleForModel, test } from 'ember-qunit';
moduleForModel('account', 'Unit | Model | account', {
// 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);
});