Skip to content

Commit

Permalink
chore: ignoring vault swaps
Browse files Browse the repository at this point in the history
  • Loading branch information
Janislav committed Feb 18, 2025
1 parent 21bdf30 commit 0e1c311
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions bouncer/tests/evm_deposits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,8 @@ async function testDoubleDeposit(sourceAsset: Asset, destAsset: Asset, _testCont
}

export async function testEvmDeposits(testContext: TestContext) {


const depositTests = Promise.all([
testSuccessiveDepositEvm('Eth', 'Dot', testContext),
testSuccessiveDepositEvm('Flip', 'Btc', testContext),
Expand All @@ -204,12 +206,12 @@ export async function testEvmDeposits(testContext: TestContext) {
testNoDuplicateWitnessing('ArbEth', 'Usdc', testContext),
]);

const multipleTxSwapsTest = Promise.all([
testTxMultipleVaultSwaps('Eth', 'Dot', testContext),
testTxMultipleVaultSwaps('Eth', 'Flip', testContext),
testTxMultipleVaultSwaps('ArbEth', 'Dot', testContext),
testTxMultipleVaultSwaps('ArbEth', 'Flip', testContext),
]);
// const multipleTxSwapsTest = Promise.all([
// testTxMultipleVaultSwaps('Eth', 'Dot', testContext),
// testTxMultipleVaultSwaps('Eth', 'Flip', testContext),
// testTxMultipleVaultSwaps('ArbEth', 'Dot', testContext),
// testTxMultipleVaultSwaps('ArbEth', 'Flip', testContext),
// ]);

const doubleDepositTests = Promise.all([
testDoubleDeposit('Eth', 'Dot', testContext),
Expand All @@ -221,7 +223,7 @@ export async function testEvmDeposits(testContext: TestContext) {
await Promise.all([
depositTests,
noDuplicatedWitnessingTest,
multipleTxSwapsTest,
// multipleTxSwapsTest,
doubleDepositTests,
]);
}

0 comments on commit 0e1c311

Please sign in to comment.