From cca43e4e01b1dfda5df1e1605ca2dda9c9434c56 Mon Sep 17 00:00:00 2001 From: librelois <elois@ifee.fr> Date: Sat, 25 Jan 2020 17:23:17 +0100 Subject: [PATCH] [ci] with the sig verif, basic pow takes more than 50 ms on CI runner. --- test/fast/prover/prover-pow-1-cluster.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fast/prover/prover-pow-1-cluster.ts b/test/fast/prover/prover-pow-1-cluster.ts index da63563cc..ea00618c0 100644 --- a/test/fast/prover/prover-pow-1-cluster.ts +++ b/test/fast/prover/prover-pow-1-cluster.ts @@ -62,7 +62,7 @@ describe('PoW Cluster', () => { master.nbWorkers.should.above(0) }) - it('should answer within 50ms for a basic PoW (warm)', async () => { + it('should answer within 100ms for a basic PoW (warm)', async () => { const start = Date.now() await master.proveByWorkers({ newPoW: { @@ -85,7 +85,7 @@ describe('PoW Cluster', () => { } }) const delay = Date.now() - start - delay.should.be.below(50) + delay.should.be.below(100) }) it('should be able to stop all the cores on cancel', async () => { -- GitLab