From f24a36000fddfb2d5c5a16bd18e988e78ad15737 Mon Sep 17 00:00:00 2001 From: Igor Kozyrev Date: Mon, 08 Nov 2021 17:12:11 +0000 Subject: [PATCH] fix: block production test timing --- --- a/tests/src/block-production.test.ts +++ b/tests/src/block-production.test.ts @@ -7,8 +7,8 @@ import {expect} from 'chai'; import {ApiPromise} from '@polkadot/api'; -const BLOCK_TIME_MS = 3000; -const TOLERANCE_MS = 1000; +const BLOCK_TIME_MS = 12000; +const TOLERANCE_MS = 3000; /* eslint no-async-promise-executor: "off" */ function getBlocks(api: ApiPromise): Promise { -- gitstuff