diff --git a/.changeset/afraid-otters-repeat.md b/.changeset/afraid-otters-repeat.md new file mode 100644 index 0000000000000..e4e56a3b578cc --- /dev/null +++ b/.changeset/afraid-otters-repeat.md @@ -0,0 +1,5 @@ +--- +'@eth-optimism/integration-tests': patch +--- + +Increase withdrawal test timeout diff --git a/integration-tests/test/shared/utils.ts b/integration-tests/test/shared/utils.ts index 0a10c4adba0dd..dc44eaf759e76 100644 --- a/integration-tests/test/shared/utils.ts +++ b/integration-tests/test/shared/utils.ts @@ -210,7 +210,7 @@ export const conditionalTest = ( } await fn() - }).timeout(timeout || envConfig.MOCHA_TIMEOUT) + }).timeout(timeout || envConfig.MOCHA_TIMEOUT * 2) } export const withdrawalTest = (name, fn, timeout?: number) =>