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