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