Commit d5b9a25b authored by Maurelian's avatar Maurelian Committed by Kelvin Fichter

chore(integration): increase timeouts

Rationale: tests are passing on my machine for the parent to this commit,
but failing in github's CI
parent c1b06a35
...@@ -14,7 +14,7 @@ const config: HardhatUserConfig = { ...@@ -14,7 +14,7 @@ const config: HardhatUserConfig = {
}, },
}, },
mocha: { mocha: {
timeout: 50000, timeout: 75_000,
}, },
solidity: { solidity: {
version: '0.8.9', version: '0.8.9',
......
...@@ -20,7 +20,7 @@ import simpleStorageJson from '../artifacts/contracts/SimpleStorage.sol/SimpleSt ...@@ -20,7 +20,7 @@ import simpleStorageJson from '../artifacts/contracts/SimpleStorage.sol/SimpleSt
// Need a big timeout to allow for all transactions to be processed. // Need a big timeout to allow for all transactions to be processed.
// For some reason I can't figure out how to set the timeout on a per-suite basis // For some reason I can't figure out how to set the timeout on a per-suite basis
// so I'm instead setting it for every test. // so I'm instead setting it for every test.
const STRESS_TEST_TIMEOUT = 300_000 const STRESS_TEST_TIMEOUT = 500_000
describe('stress tests', () => { describe('stress tests', () => {
let env: OptimismEnv let env: OptimismEnv
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment