mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-21 08:32:05 +00:00
12 lines
302 B
JavaScript
12 lines
302 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('route:scripts/page', 'Unit | Route | scripts/page', {
|
|
// Specify the other units that are required for this test.
|
|
// needs: ['controller:foo']
|
|
});
|
|
|
|
test('it exists', function(assert) {
|
|
let route = this.subject();
|
|
assert.ok(route);
|
|
});
|