diff --git a/yarn-project/end-to-end/src/sample-dapp/index.test.mjs b/yarn-project/end-to-end/src/sample-dapp/index.test.mjs index db96a196bf8..001412e17f6 100644 --- a/yarn-project/end-to-end/src/sample-dapp/index.test.mjs +++ b/yarn-project/end-to-end/src/sample-dapp/index.test.mjs @@ -10,7 +10,7 @@ describe('private token', () => { owner = await createAccount(rpc); recipient = await createAccount(rpc); token = await Contract.deploy(owner, PrivateTokenArtifact, [100n, owner.getAddress()]).send().deployed(); - }, 30_000); + }, 60_000); afterAll(() => stop()); // docs:end:setup