open-consul/ui/packages/consul-ui/tests/unit/utils/dom/event-target/rsvp-test.js

21 lines
628 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import domEventTargetRsvp from 'consul-ui/utils/dom/event-target/rsvp';
import { module, test } from 'qunit';
module('Unit | Utility | dom/event-target/rsvp', function () {
// Replace this with your real tests.
test('it has EventTarget methods', function (assert) {
assert.expect(4);
const result = domEventTargetRsvp;
assert.equal(typeof result, 'function');
['addEventListener', 'removeEventListener', 'dispatchEvent'].forEach(function (item) {
assert.equal(typeof result.prototype[item], 'function');
});
});
});