You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
wip
This commit is contained in:
@@ -61,3 +61,9 @@ export async function waitTillBeenCalled(spy: SinonSpy): Promise<void> {
|
|||||||
await setTimeout(50);
|
await setTimeout(50);
|
||||||
} while (spy.callCount === calls);
|
} while (spy.callCount === calls);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const BLOCKING_MIN_VALUE = (
|
||||||
|
utils.isVersionGreaterThan([7]) ? Number.MIN_VALUE :
|
||||||
|
utils.isVersionGreaterThan([6]) ? 0.01 :
|
||||||
|
1
|
||||||
|
);
|
||||||
|
Reference in New Issue
Block a user