Skip to content

Commit edd9bea

Browse files
authored
chore: skip A->B B->A e2e_2_pxes test
Until #10296
1 parent c48ae90 commit edd9bea

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

yarn-project/end-to-end/src/e2e_2_pxes.test.ts

+8-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
import { getUnsafeSchnorrAccount } from '@aztec/accounts/single_key';
22
import { createAccounts } from '@aztec/accounts/testing';
3-
import {
4-
type AztecAddress,
5-
type AztecNode,
6-
type DebugLogger,
7-
type ExtendedNote,
8-
Fr,
9-
type PXE,
10-
type Wallet,
11-
retryUntil,
12-
sleep,
13-
} from '@aztec/aztec.js';
3+
import { type AztecAddress, type AztecNode, type DebugLogger, type ExtendedNote, Fr, type PXE, type Wallet, retryUntil, sleep } from '@aztec/aztec.js';
144
import { ChildContract, TestContract, TokenContract } from '@aztec/noir-contracts.js';
155

6+
7+
168
import { expect, jest } from '@jest/globals';
179

10+
11+
1812
import { deployToken, expectTokenBalance, mintTokensToPrivate } from './fixtures/token_utils.js';
1913
import { setup, setupPXEService } from './fixtures/utils.js';
2014

15+
2116
const TIMEOUT = 120_000;
2217

2318
describe('e2e_2_pxes', () => {
@@ -57,7 +52,8 @@ describe('e2e_2_pxes', () => {
5752
await teardownA();
5853
});
5954

60-
it('transfers funds from user A to B via PXE A followed by transfer from B to A via PXE B', async () => {
55+
// TODO #10296
56+
it.skip('transfers funds from user A to B via PXE A followed by transfer from B to A via PXE B', async () => {
6157
const initialBalance = 987n;
6258
const transferAmount1 = 654n;
6359
const transferAmount2 = 323n;

0 commit comments

Comments
 (0)