Files
Neon-Desk/test/vitest.setup.ts

7 lines
179 B
TypeScript

const bunGlobal = ((globalThis as { Bun?: Record<string, unknown> }).Bun ??=
{});
if (typeof bunGlobal.sleep !== "function") {
bunGlobal.sleep = async (_ms: number) => {};
}