From 9d3f5d0b766d3106dc802f4a6a3e5f3c5f569257 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 21 May 2025 23:09:53 +0700 Subject: [PATCH] Adjust test timeout, it too small for github actions. Signed-off-by: Andrey Sobolev --- ws-tests/api-tests/src/__tests__/rest.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ws-tests/api-tests/src/__tests__/rest.test.ts b/ws-tests/api-tests/src/__tests__/rest.test.ts index cb87ba8b1f..a0698bf884 100644 --- a/ws-tests/api-tests/src/__tests__/rest.test.ts +++ b/ws-tests/api-tests/src/__tests__/rest.test.ts @@ -292,5 +292,5 @@ async function checkFindPerformance (conn: RestClient): Promise { const avg = total / ops // console.log('ops:', ops, 'total:', total, 'avg:', ) expect(ops).toEqual(attempts) - expect(avg).toBeLessThan(5) + expect(avg).toBeLessThan(6) }