mirror of
https://github.com/status-im/consul.git
synced 2025-01-27 05:57:03 +00:00
cb0c5309c9
- 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)
11 lines
314 B
JavaScript
11 lines
314 B
JavaScript
import domEventSourceResolver from 'consul-ui/utils/dom/event-source/resolver';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | dom/event source/resolver');
|
|
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
let result = domEventSourceResolver();
|
|
assert.ok(result);
|
|
});
|