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