From 8f13bb64cc64ed04301560f46a3d8ee76559d087 Mon Sep 17 00:00:00 2001 From: Bogdan Fazakas Date: Mon, 22 Aug 2022 17:34:12 +0300 Subject: [PATCH] use higher sleep value --- test/integration/ComputeFlow.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/ComputeFlow.test.ts b/test/integration/ComputeFlow.test.ts index 6485f46c..3a08519b 100644 --- a/test/integration/ComputeFlow.test.ts +++ b/test/integration/ComputeFlow.test.ts @@ -499,8 +499,8 @@ describe('Simple compute tests', async () => { }) it('should restart a computeJob without paying anything, because order is valid and providerFees are still valid', async () => { - // wait some time so the other compute job finishes his job - await sleep(2000) + // wait 1 min time so the other compute job finishes his job + await sleep(60000) // we choose the free env const computeEnv = computeEnvs.find((ce) => ce.priceMin === 0)