Release v1.6.89

This commit is contained in:
Sucukdeluxe
2026-03-06 20:19:17 +01:00
parent 272b43d59e
commit 0eb3403e40
5 changed files with 54 additions and 25 deletions
+3 -3
View File
@@ -3161,9 +3161,9 @@ describe("download manager", () => {
const secondDelay = readyTimes[1] - now;
expect(firstDelay).toBeGreaterThan(1500);
expect(firstDelay).toBeLessThan(4500);
expect(secondDelay).toBeGreaterThan(3500);
expect(secondDelay).toBeLessThan(7000);
expect(secondDelay - firstDelay).toBeGreaterThan(1500);
expect(secondDelay).toBeGreaterThan(1500);
expect(secondDelay).toBeLessThan(4500);
expect(Math.abs(secondDelay - firstDelay)).toBeLessThan(1000);
manager.stop();
await waitFor(() => !manager.getSnapshot().session.running, 15000);