mirror of
https://github.com/datahub-project/datahub.git
synced 2025-09-01 13:23:09 +00:00
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('route:datasets/dataset/schema', 'Unit | Route | datasets/dataset/schema', {
|
|
needs: ['service:metrics']
|
|
});
|
|
|
|
test('it exists', function(assert) {
|
|
let route = this.subject();
|
|
assert.ok(route);
|
|
});
|