Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .test_patterns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -356,3 +356,11 @@ tests:
error_regex: "timeout: sending signal"
owners:
- *charlie

# Timing-sensitive: after time warp, PXE may use stale anchor block under heavy CI load,
# causing "Invalid expiration timestamp" when 64+ tests run in parallel.
# Passes reliably when run in isolation. Introduced by #22084 (new CheatCodes warp API).
- regex: "src/e2e_blacklist_token_contract/shielding.test.ts"
error_regex: "Invalid expiration timestamp"
owners:
- *jan
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ export class BlacklistTokenContractTest {

async crossTimestampOfChange() {
await this.cheatCodes.warpL2TimeAtLeastBy(this.aztecNode, BlacklistTokenContractTest.CHANGE_ROLES_DELAY);
// Force PXE to sync the warped block before returning. Under heavy CI load, the PXE may not
// have the latest block yet when the next send() call runs, causing "Invalid expiration timestamp".
await this.asset.methods.get_roles(this.adminAddress).simulate({ from: this.adminAddress });
}

/**
Expand Down
Loading