securityos/utils/testFunctions.ts

7 lines
206 B
TypeScript
Raw Normal View History

2024-09-06 15:32:35 +00:00
export const mockOnLoadEventListener = (
type: string,
listener: EventListenerOrEventListenerObject
): void => {
if (type === "load" && typeof listener === "function") listener({} as Event);
};