96ea5b799a
1. Listing, filtering by action and searching by source name and destination name 2. Edit/Create page, edits ping the API double fine, need to work through creates and deletes 3. Currently uses a `Precedence` intention keyname that doesn't yet exist in the real API
25 lines
678 B
JavaScript
25 lines
678 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import { run } from '@ember/runloop';
|
|
|
|
module('Unit | Serializer | intention', 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('intention');
|
|
|
|
assert.ok(serializer);
|
|
});
|
|
|
|
test('it serializes records', function(assert) {
|
|
let store = this.owner.lookup('service:store');
|
|
let record = run(() => store.createRecord('intention', {}));
|
|
|
|
let serializedRecord = record.serialize();
|
|
|
|
assert.ok(serializedRecord);
|
|
});
|
|
});
|