Skip to content

Commit

Permalink
chore: unskip test and fix params (#2454)
Browse files Browse the repository at this point in the history
Co-authored-by: Álvaro Rodríguez <sirasistant@gmail.com>
  • Loading branch information
rahul-kothari and sirasistant authored Sep 21, 2023
1 parent 3e3930c commit e484c5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_cross_chain_messaging.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('e2e_cross_chain_messaging', () => {
await crossChainTestHarness?.stop();
});

it.skip('Milestone 2: Deposit funds from L1 -> L2 and withdraw back to L1', async () => {
it('Milestone 2: Deposit funds from L1 -> L2 and withdraw back to L1', async () => {
// Generate a claim secret using pedersen
const l1TokenBalance = 1000000n;
const bridgeAmount = 100n;
Expand Down Expand Up @@ -97,9 +97,9 @@ describe('e2e_cross_chain_messaging', () => {
// 3. Consume L1-> L2 message and mint private tokens on L2
await crossChainTestHarness.consumeMessageOnAztecAndMintSecretly(
bridgeAmount,
secretHashForRedeemingMintedNotes,
messageKey,
secretForL2MessageConsumption,
secretHashForRedeemingMintedNotes,
);
// tokens were minted privately in a TransparentNote which the owner (person who knows the secret) must redeem:
await crossChainTestHarness.redeemShieldPrivatelyOnL2(bridgeAmount, secretForRedeemingMintedNotes);
Expand Down

0 comments on commit e484c5f

Please sign in to comment.