mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-30 20:15:56 +00:00
12 lines
285 B
TypeScript
12 lines
285 B
TypeScript
![]() |
import { module, test } from 'qunit';
|
||
|
import { setupTest } from 'ember-qunit';
|
||
|
|
||
|
module('Unit | Route | lineage/urn', function(hooks) {
|
||
|
setupTest(hooks);
|
||
|
|
||
|
test('it exists', function(assert) {
|
||
|
const route = this.owner.lookup('route:lineage/urn');
|
||
|
assert.ok(route);
|
||
|
});
|
||
|
});
|