13 lines
371 B
JavaScript
13 lines
371 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('controller:dc/kv/index', 'Unit | Controller | dc/kv/index', {
|
|
// Specify the other units that are required for this test.
|
|
needs: ['service:search', 'service:dom'],
|
|
});
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let controller = this.subject();
|
|
assert.ok(controller);
|
|
});
|