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

11 lines
256 B
JavaScript

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