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)
19 lines
434 B
JavaScript
19 lines
434 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('route:settings', 'Unit | Route | settings', {
|
|
// Specify the other units that are required for this test.
|
|
needs: [
|
|
'service:client/http',
|
|
'service:repository/dc',
|
|
'service:settings',
|
|
'service:logger',
|
|
'service:feedback',
|
|
'service:flashMessages',
|
|
],
|
|
});
|
|
|
|
test('it exists', function(assert) {
|
|
let route = this.subject();
|
|
assert.ok(route);
|
|
});
|