mirror of
https://gitlab.silvrtree.co.uk/martind2000/censis-archive.git
synced 2025-02-03 18:20:14 +00:00
13 lines
316 B
JavaScript
13 lines
316 B
JavaScript
|
import { moduleForModel, test } from 'ember-qunit';
|
||
|
|
||
|
moduleForModel('newcompany', 'Unit | Model | newcompany', {
|
||
|
// 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);
|
||
|
});
|