Skip to content

Commit

Permalink
increasing timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Dec 23, 2024
1 parent 0bfc26f commit 10f19f7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ 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 //////////////
Expand Down
2 changes: 2 additions & 0 deletions yarn-project/end-to-end/src/guides/dapp_testing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ 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
Expand Down
2 changes: 2 additions & 0 deletions yarn-project/end-to-end/src/guides/up_quick_start.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ 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));
Expand Down
2 changes: 2 additions & 0 deletions yarn-project/end-to-end/src/shared/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ export const browserTestSuite = (
pageLogger: AztecJs.Logger,
) =>
describe('e2e_aztec.js_browser', () => {
jest.setTimeout(60_000);

const initialBalance = 33n;
const transferAmount = 3n;

Expand Down

0 comments on commit 10f19f7

Please sign in to comment.