inspektor/tests/unit/routes/index-test.js
2017-11-08 23:35:23 +01:00

11 lines
224 B
JavaScript

import { moduleFor, test } from 'ember-qunit';
moduleFor('route:index', 'Unit | Route | index', {
needs: ['service:storage']
});
test('it exists', function(assert) {
let route = this.subject();
assert.ok(route);
});