mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-04 02:51:44 +00:00
11 lines
215 B
JavaScript
11 lines
215 B
JavaScript
const utils = require('../../lib/util/utils');
|
|
const spy = jest.spyOn(utils.default, 'sleep');
|
|
|
|
export function mock() {
|
|
spy.mockImplementation(() => {});
|
|
}
|
|
|
|
export function restore() {
|
|
spy.mockRestore();
|
|
}
|