c548d94450
* Fix to bottom border not applying to the correct <li> * Create Linked Services tab with styling and tests * Add internal endpoint gateway-services-nodes to the codebase with tests * Upgrade consul-api-double to version 2.15.0
24 lines
623 B
JavaScript
24 lines
623 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Unit | Serializer | gateway', 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('gateway');
|
|
|
|
assert.ok(serializer);
|
|
});
|
|
|
|
test('it serializes records', function(assert) {
|
|
let store = this.owner.lookup('service:store');
|
|
let record = store.createRecord('gateway', {});
|
|
|
|
let serializedRecord = record.serialize();
|
|
|
|
assert.ok(serializedRecord);
|
|
});
|
|
});
|