15 lines
405 B
JavaScript
15 lines
405 B
JavaScript
|
import { module, test } from 'qunit';
|
||
|
import { setupTest } from 'ember-qunit';
|
||
|
import { run } from '@ember/runloop';
|
||
|
|
||
|
module('Unit | Model | kv', function(hooks) {
|
||
|
setupTest(hooks);
|
||
|
|
||
|
// Replace this with your real tests.
|
||
|
test('it exists', function(assert) {
|
||
|
let store = this.owner.lookup('service:store');
|
||
|
let model = run(() => store.createRecord('kv', {}));
|
||
|
assert.ok(model);
|
||
|
});
|
||
|
});
|