Skip to content

Commit

Permalink
Bump more timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed May 3, 2024
1 parent eb28b16 commit ccd3a0a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions yarn-project/end-to-end/src/e2e_ordering.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<void>;
Expand All @@ -29,7 +31,7 @@ describe('e2e_ordering', () => {

beforeEach(async () => {
({ teardown, pxe, wallet } = await setup());
}, 300_000);
}, TIMEOUT);

afterEach(() => teardown());

Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ccd3a0a

Please sign in to comment.