mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-23 17:01:00 -05:00
15 lines
454 B
TypeScript
15 lines
454 B
TypeScript
|
import { describe, test, expect } from "@jest/globals";
|
||
|
import sleep from "../../../src/utils/sleep";
|
||
|
|
||
|
describe("sleep", () => {
|
||
|
test("execution continues after the specified delay", async () => {
|
||
|
const start = new Date();
|
||
|
await sleep(100);
|
||
|
const end = new Date();
|
||
|
const duration = end.getTime() - start.getTime();
|
||
|
expect(duration).toBeGreaterThan(50);
|
||
|
expect(duration).toBeLessThan(200);
|
||
|
});
|
||
|
});
|
||
|
|