diff --git a/yarn-project/end-to-end/src/composed/e2e_sandbox_example.test.ts b/yarn-project/end-to-end/src/composed/e2e_sandbox_example.test.ts index faeaaba6529..4b7b34e47a6 100644 --- a/yarn-project/end-to-end/src/composed/e2e_sandbox_example.test.ts +++ b/yarn-project/end-to-end/src/composed/e2e_sandbox_example.test.ts @@ -56,7 +56,6 @@ import { getSchnorrAccount } from '@aztec/accounts/schnorr'; import { getDeployedTestAccountsWallets } from '@aztec/accounts/testing'; import { Fr, GrumpkinScalar, type PXE, createLogger, createPXEClient, waitForPXE } from '@aztec/aztec.js'; -import { jest } from '@jest/globals'; import { format } from 'util'; // docs:end:imports @@ -65,8 +64,6 @@ import { deployToken, mintTokensToPrivate } from '../fixtures/token_utils.js'; const { PXE_URL = 'http://localhost:8080' } = process.env; describe('e2e_sandbox_example', () => { - jest.setTimeout(60_000); - it('sandbox example works', async () => { // docs:start:setup ////////////// CREATE THE CLIENT INTERFACE AND CONTACT THE SANDBOX ////////////// diff --git a/yarn-project/end-to-end/src/guides/dapp_testing.test.ts b/yarn-project/end-to-end/src/guides/dapp_testing.test.ts index 8a24dc364db..d9cbf1f3553 100644 --- a/yarn-project/end-to-end/src/guides/dapp_testing.test.ts +++ b/yarn-project/end-to-end/src/guides/dapp_testing.test.ts @@ -7,16 +7,12 @@ import { TestContract } from '@aztec/noir-contracts.js/Test'; // docs:end:import_contract import { TokenContract } from '@aztec/noir-contracts.js/Token'; -import { jest } from '@jest/globals'; - import { U128_UNDERFLOW_ERROR } from '../fixtures/fixtures.js'; import { mintTokensToPrivate } from '../fixtures/token_utils.js'; const { PXE_URL = 'http://localhost:8080', ETHEREUM_HOST = 'http://localhost:8545' } = process.env; describe('guides/dapp/testing', () => { - jest.setTimeout(60_000); - describe('on local sandbox', () => { beforeAll(async () => { // docs:start:create_pxe_client diff --git a/yarn-project/end-to-end/src/guides/up_quick_start.test.ts b/yarn-project/end-to-end/src/guides/up_quick_start.test.ts index e530b850fd4..1fc6920a1f9 100644 --- a/yarn-project/end-to-end/src/guides/up_quick_start.test.ts +++ b/yarn-project/end-to-end/src/guides/up_quick_start.test.ts @@ -1,14 +1,11 @@ import { createAztecNodeClient, waitForNode } from '@aztec/aztec.js'; -import { jest } from '@jest/globals'; import { execSync } from 'child_process'; const { AZTEC_NODE_URL = '' } = process.env; // Entrypoint for running the up-quick-start script on the CI describe('guides/up_quick_start', () => { - jest.setTimeout(60_000); - // TODO: update to not use CLI it('works', async () => { await waitForNode(createAztecNodeClient(AZTEC_NODE_URL)); diff --git a/yarn-project/end-to-end/src/shared/browser.ts b/yarn-project/end-to-end/src/shared/browser.ts index f55dd85275e..b1b2f3fd863 100644 --- a/yarn-project/end-to-end/src/shared/browser.ts +++ b/yarn-project/end-to-end/src/shared/browser.ts @@ -6,7 +6,6 @@ import * as AztecJs from '@aztec/aztec.js'; import { TokenContractArtifact } from '@aztec/noir-contracts.js/Token'; import { contractArtifactToBuffer } from '@aztec/types/abi'; -import { jest } from '@jest/globals'; import getPort from 'get-port'; import { type Server } from 'http'; import Koa from 'koa'; @@ -56,8 +55,6 @@ export const browserTestSuite = ( pageLogger: AztecJs.Logger, ) => describe('e2e_aztec.js_browser', () => { - jest.setTimeout(60_000); - const initialBalance = 33n; const transferAmount = 3n;