da36c2a0f9
- Maintain http headers as JSON-API meta for all API requests (#4946) - Add EventSource ready for implementing blocking queries - EventSource project implementation to enable blocking queries for service and node listings (#5267) - Add setting to enable/disable blocking queries (#5352)
13 lines
367 B
JavaScript
13 lines
367 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('controller:settings', 'Unit | Controller | settings', {
|
|
// Specify the other units that are required for this test.
|
|
needs: ['service:settings', 'service:dom'],
|
|
});
|
|
|
|
// Replace this with your real tests.
|
|
test('it exists', function(assert) {
|
|
let controller = this.subject();
|
|
assert.ok(controller);
|
|
});
|