mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Fixed non-deterministic tests
This commit is contained in:
parent
235aa3c252
commit
a1dea07776
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ describe("retry", () => {
|
|||
expect(await retry({ func: createThrowingFunc(2), maxAttempts: 2, delay: 100 })).toBe(true);
|
||||
const end = new Date();
|
||||
const duration = end.getTime() - start.getTime();
|
||||
expect(duration >= 100 && duration < 200).toBe(true);
|
||||
expect(duration > 50 && duration < 200).toBe(true);
|
||||
});
|
||||
|
||||
test("the original error is thrown if retry function didn't succeed", async () => {
|
||||
|
@ -53,7 +53,7 @@ describe("retry (async)", () => {
|
|||
expect(await retry({ func: createAsyncThrowingFunc(2), maxAttempts: 2, delay: 100 })).toBe(true);
|
||||
const end = new Date();
|
||||
const duration = end.getTime() - start.getTime();
|
||||
expect(duration >= 100 && duration < 200).toBe(true);
|
||||
expect(duration > 50 && duration < 200).toBe(true);
|
||||
});
|
||||
|
||||
test("the original error is thrown if retry function didn't succeed", async () => {
|
||||
|
|
Loading…
Reference in a new issue