Skip to content

Commit

Permalink
chore: removed file and run linter + prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Janislav committed Feb 21, 2025
1 parent 63052b0 commit 6482bf3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 30 deletions.
16 changes: 0 additions & 16 deletions bouncer/test_commands/evm_deposit.ts

This file was deleted.

27 changes: 13 additions & 14 deletions bouncer/tests/evm_deposits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,24 +198,23 @@ async function testDoubleDeposit(parentLogger: Logger, sourceAsset: Asset, destA
}

export async function testEvmDeposits(testContext: TestContext) {

const depositTests = Promise.all([
testSuccessiveDepositEvm('Eth', 'Dot', testContext),
testSuccessiveDepositEvm('Flip', 'Btc', testContext),
testSuccessiveDepositEvm('ArbEth', 'Dot', testContext),
testSuccessiveDepositEvm('ArbUsdc', 'Btc', testContext),
]);
testSuccessiveDepositEvm('Eth', 'Dot', testContext),
testSuccessiveDepositEvm('Flip', 'Btc', testContext),
testSuccessiveDepositEvm('ArbEth', 'Dot', testContext),
testSuccessiveDepositEvm('ArbUsdc', 'Btc', testContext),
]);

const noDuplicatedWitnessingTest = Promise.all([
testNoDuplicateWitnessing('Eth', 'Dot', testContext),
testNoDuplicateWitnessing('Eth', 'Btc', testContext),
testNoDuplicateWitnessing('Eth', 'Flip', testContext),
testNoDuplicateWitnessing('Eth', 'Usdc', testContext),
testNoDuplicateWitnessing('ArbEth', 'Dot', testContext),
testNoDuplicateWitnessing('ArbEth', 'Btc', testContext),
testNoDuplicateWitnessing('ArbEth', 'Flip', testContext),
testNoDuplicateWitnessing('ArbEth', 'Usdc', testContext),
]);
testNoDuplicateWitnessing('Eth', 'Btc', testContext),
testNoDuplicateWitnessing('Eth', 'Flip', testContext),
testNoDuplicateWitnessing('Eth', 'Usdc', testContext),
testNoDuplicateWitnessing('ArbEth', 'Dot', testContext),
testNoDuplicateWitnessing('ArbEth', 'Btc', testContext),
testNoDuplicateWitnessing('ArbEth', 'Flip', testContext),
testNoDuplicateWitnessing('ArbEth', 'Usdc', testContext),
]);

const multipleTxSwapsTest = Promise.all([
testTxMultipleVaultSwaps(testContext.logger, 'Eth', 'Dot'),
Expand Down

0 comments on commit 6482bf3

Please sign in to comment.