2
0
mirror of https://github.com/status-im/consul.git synced 2025-03-02 06:10:44 +00:00
John Cowen 7d89e519a2 UI: New ACLs ()
UI to accompany the new ACLs APIs
2018-10-19 08:45:05 -07:00

25 lines
666 B
JavaScript

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