1
0
Fork 0
sortable-recipes/tests/unit/controllers/index-test.js
2019-12-22 23:02:11 -06:00

12 lines
331 B
JavaScript

import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Controller | index', function(hooks) {
setupTest(hooks);
// Replace this with your real tests.
test('it exists', function(assert) {
let controller = this.owner.lookup('controller:index');
assert.ok(controller);
});
});