mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-06-24 06:01:40 +00:00
6 lines
109 B
TypeScript
6 lines
109 B
TypeScript
export const mockDebounce = vi.fn((fn) => fn);
|
|
|
|
vi.mock("debounce", () => ({
|
|
default: mockDebounce,
|
|
}));
|