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