25 lines
672 B
JavaScript
25 lines
672 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import { run } from '@ember/runloop';
|
|
|
|
module('Unit | Serializer | service', 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('service');
|
|
|
|
assert.ok(serializer);
|
|
});
|
|
|
|
test('it serializes records', function(assert) {
|
|
let store = this.owner.lookup('service:store');
|
|
let record = run(() => store.createRecord('service', {}));
|
|
|
|
let serializedRecord = record.serialize();
|
|
|
|
assert.ok(serializedRecord);
|
|
});
|
|
});
|