Chatwoot/app/javascript/shared/helpers/specs/CustomEventHelper.spec.js
2022-02-21 09:40:11 +05:30

9 lines
294 B
JavaScript

import { dispatchWindowEvent } from '../CustomEventHelper';
describe('dispatchWindowEvent', () => {
it('dispatches correct event', () => {
window.dispatchEvent = jest.fn();
dispatchWindowEvent({ eventName: 'chatwoot:ready' });
expect(dispatchEvent).toHaveBeenCalled();
});
});