2022-02-16 11:20:17 +08:00

9 lines
145 B
TypeScript

export function getMockEvent(target, options) {
return {
target,
preventDefault() {},
stopPropagation() {},
...options,
};
}