2019-02-21 10:36:15 +00:00
|
|
|
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
|
|
|
|
moduleFor('controller:settings', 'Unit | Controller | settings', {
|
|
|
|
// Specify the other units that are required for this test.
|
2019-05-17 11:33:12 +00:00
|
|
|
needs: ['service:settings', 'service:dom', 'service:timeout'],
|
2019-02-21 10:36:15 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Replace this with your real tests.
|
|
|
|
test('it exists', function(assert) {
|
|
|
|
let controller = this.subject();
|
|
|
|
assert.ok(controller);
|
|
|
|
});
|