Skip to content

Commit

Permalink
chore: Disable flaky cheat code test
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino committed Jul 10, 2024
1 parent e7177ba commit 7b8c2ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion yarn-project/end-to-end/src/guides/dapp_testing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ describe('guides/dapp/testing', () => {
cheats = CheatCodes.create(ETHEREUM_HOST, pxe);
});

it('warps time to 1h into the future', async () => {
// TODO(@spalladino) Disabled due to flakiness after #7347. Note that warp is already tested in e2e_cheat_codes.
it.skip('warps time to 1h into the future', async () => {
// docs:start:warp
const newTimestamp = Math.floor(Date.now() / 1000) + 60 * 60 * 24;
await cheats.aztec.warp(newTimestamp);
Expand Down

0 comments on commit 7b8c2ba

Please sign in to comment.