12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
|
import { module, test } from 'qunit';
|
||
|
import { setupTest } from 'frontend-reactive/tests/helpers';
|
||
|
|
||
|
module('Unit | Route | auth', function (hooks) {
|
||
|
setupTest(hooks);
|
||
|
|
||
|
test('it exists', function (assert) {
|
||
|
const route = this.owner.lookup('route:auth');
|
||
|
assert.ok(route);
|
||
|
});
|
||
|
});
|