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