mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
7d89e519a2
UI to accompany the new ACLs APIs
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Unit | Adapter | policy', function(hooks) {
|
|
setupTest(hooks);
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let adapter = this.owner.lookup('adapter:policy');
|
|
assert.ok(adapter);
|
|
});
|
|
});
|