diff --git a/yarn-project/end-to-end/src/e2e_ordering.test.ts b/yarn-project/end-to-end/src/e2e_ordering.test.ts index cd42383f864..99aaa3d190b 100644 --- a/yarn-project/end-to-end/src/e2e_ordering.test.ts +++ b/yarn-project/end-to-end/src/e2e_ordering.test.ts @@ -7,10 +7,12 @@ import { jest } from '@jest/globals'; import { setup } from './fixtures/utils.js'; -jest.setTimeout(30_000); +const TIMEOUT = 300_000; // See https://github.com/AztecProtocol/aztec-packages/issues/1601 describe('e2e_ordering', () => { + jest.setTimeout(TIMEOUT); + let pxe: PXE; let wallet: Wallet; let teardown: () => Promise; @@ -29,7 +31,7 @@ describe('e2e_ordering', () => { beforeEach(async () => { ({ teardown, pxe, wallet } = await setup()); - }, 300_000); + }, TIMEOUT); afterEach(() => teardown()); @@ -42,7 +44,7 @@ describe('e2e_ordering', () => { parent = await ParentContract.deploy(wallet).send().deployed(); child = await ChildContract.deploy(wallet).send().deployed(); pubSetValueSelector = child.methods.pub_set_value.selector; - }); + }, TIMEOUT); describe('enqueued public calls ordering', () => { const nestedValue = 10n; diff --git a/yarn-project/end-to-end/src/flakey_e2e_account_init_fees.test.ts b/yarn-project/end-to-end/src/flakey_e2e_account_init_fees.test.ts index 2f488cca319..d17f93b4aea 100644 --- a/yarn-project/end-to-end/src/flakey_e2e_account_init_fees.test.ts +++ b/yarn-project/end-to-end/src/flakey_e2e_account_init_fees.test.ts @@ -40,7 +40,7 @@ const TOKEN_SYMBOL = 'BC'; const TOKEN_DECIMALS = 18n; const BRIDGED_FPC_GAS = BigInt(10e12); -jest.setTimeout(1000_000); +jest.setTimeout(1_000_000); describe('e2e_fees_account_init', () => { let ctx: EndToEndContext;