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