Adjust test timeout, it too small for github actions.

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2025-05-21 23:09:53 +07:00
parent 47c61d14e4
commit 9d3f5d0b76
No known key found for this signature in database
GPG Key ID: BD80F68D68D8F7F2

View File

@ -292,5 +292,5 @@ async function checkFindPerformance (conn: RestClient): Promise<void> {
const avg = total / ops
// console.log('ops:', ops, 'total:', total, 'avg:', )
expect(ops).toEqual(attempts)
expect(avg).toBeLessThan(5)
expect(avg).toBeLessThan(6)
}