consul/ui/packages/consul-ui/tests/unit/utils/dom/event-source/proxy-test.js

16 lines
407 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
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);
});
});