9 lines
294 B
JavaScript
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();
|
|
});
|
|
});
|