Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: refactor public cross chain tests for speed #6082

Merged
merged 1 commit into from
Apr 29, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ This fetches the wallets from the sandbox and deploys our cross chain harness on

## Public flow test

#include_code e2e_public_cross_chain /yarn-project/end-to-end/src/e2e_public_cross_chain_messaging.test.ts typescript
#include_code e2e_public_cross_chain /yarn-project/end-to-end/src/e2e_public_cross_chain_messaging/deposits.test.ts typescript

## Running the test

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,8 @@ export class BlacklistTokenContractTest {
this.admin = this.wallets[0];
this.other = this.wallets[1];
this.blacklisted = this.wallets[2];
// this.accounts = this.wallets.map(a => a.getCompleteAddress());
this.accounts = await pxe.getRegisteredAccounts();
this.wallets.forEach((w, i) => this.logger.verbose(`Wallet ${i} address: ${w.getAddress()}`));
this.accounts.forEach((w, i) => this.logger.verbose(`Account ${i} address: ${w.address}`));
});

await this.snapshotManager.snapshot(
Expand Down
Loading
Loading