mirror of https://github.com/hashicorp/consul
12 lines
295 B
JavaScript
12 lines
295 B
JavaScript
import { module, test } from 'qunit';
|
|||
import { setupTest } from 'ember-qunit';
|
|||
|
|||
module('Unit | Route | dc/kv/root create', function(hooks) {
|
|||
setupTest(hooks);
|
|||
|
|||
test('it exists', function(assert) {
|
|||
let route = this.owner.lookup('route:dc/kv/root-create');
|
|||
assert.ok(route);
|
|||
});
|
|||
});
|