2020-07-25 16:24:58 +00:00
|
|
|
import { dispatchWindowEvent } from '../CustomEventHelper';
|
|
|
|
|
|
|
|
describe('dispatchWindowEvent', () => {
|
|
|
|
it('dispatches correct event', () => {
|
|
|
|
window.dispatchEvent = jest.fn();
|
2022-02-21 04:10:11 +00:00
|
|
|
dispatchWindowEvent({ eventName: 'chatwoot:ready' });
|
2020-07-25 16:24:58 +00:00
|
|
|
expect(dispatchEvent).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|