15 lines
387 B
JavaScript
15 lines
387 B
JavaScript
|
import { module, test } from 'qunit';
|
||
|
import { setupTest } from 'ember-qunit';
|
||
|
|
||
|
module('Unit | Serializer | application', function(hooks) {
|
||
|
setupTest(hooks);
|
||
|
|
||
|
// Replace this with your real tests.
|
||
|
test('it exists', function(assert) {
|
||
|
let store = this.owner.lookup('service:store');
|
||
|
let serializer = store.serializerFor('application');
|
||
|
|
||
|
assert.ok(serializer);
|
||
|
});
|
||
|
});
|