11 lines
327 B
JavaScript
11 lines
327 B
JavaScript
import domEventSourceProxy from 'consul-ui/utils/dom/event-source/proxy';
|
|
import { module, test } from 'qunit';
|
|
|
|
module('Unit | Utility | dom/event source/proxy', function() {
|
|
// Replace this with your real tests.
|
|
test('it works', function(assert) {
|
|
let result = domEventSourceProxy();
|
|
assert.ok(result);
|
|
});
|
|
});
|