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

15 lines
411 B
JavaScript

import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
import { run } from '@ember/runloop';
module('Unit | Model | token', function(hooks) {
setupTest(hooks);
// Replace this with your real tests.
test('it exists', function(assert) {
let store = this.owner.lookup('service:store');
let model = run(() => store.createRecord('token', {}));
assert.ok(model);
});
});