mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-09 17:58:03 +00:00
12 lines
269 B
TypeScript
12 lines
269 B
TypeScript
![]() |
import { module, test } from 'qunit';
|
||
|
import { setupTest } from 'ember-qunit';
|
||
|
|
||
|
module('Unit | Route | user', function(hooks) {
|
||
|
setupTest(hooks);
|
||
|
|
||
|
test('it exists', function(assert) {
|
||
|
let route = this.owner.lookup('route:user');
|
||
|
assert.ok(route);
|
||
|
});
|
||
|
});
|