Skip to content

Commit

Permalink
only all swaps
Browse files Browse the repository at this point in the history
  • Loading branch information
kylezs committed Feb 20, 2025
1 parent b910555 commit 588a7fc
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions bouncer/tests/fast_bouncer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ describe('ConcurrentTests', () => {
const givenNumberOfNodes = match ? parseInt(match[0]) : null;
const numberOfNodes = givenNumberOfNodes ?? 1;

concurrentTest('SwapLessThanED', swapLessThanED, 400);
// concurrentTest('SwapLessThanED', swapLessThanED, 400);
concurrentTest('AllSwaps', testAllSwaps, numberOfNodes === 1 ? 1400 : 2000); // TODO: find out what the 3-node timeout should be
// concurrentTest('EvmDeposits', testEvmDeposits, 250);
concurrentTest('FundRedeem', testFundRedeem, 1000);
concurrentTest('MultipleMembersGovernance', testMultipleMembersGovernance, 120);
concurrentTest('LpApi', testLpApi, 200);
concurrentTest('BrokerFeeCollection', testBrokerFeeCollection, 200);
concurrentTest('BoostingForAsset', testBoostingSwap, 120);
// concurrentTest('FundRedeem', testFundRedeem, 1000);
// concurrentTest('MultipleMembersGovernance', testMultipleMembersGovernance, 120);
// concurrentTest('LpApi', testLpApi, 200);
// concurrentTest('BrokerFeeCollection', testBrokerFeeCollection, 200);
// concurrentTest('BoostingForAsset', testBoostingSwap, 120);
// concurrentTest('FillOrKill', testFillOrKill, 800);
concurrentTest('DCASwaps', testDCASwaps, 300);
concurrentTest('CancelOrdersBatch', testCancelOrdersBatch, 240);
concurrentTest('DepositChannelCreation', depositChannelCreation, 360);
concurrentTest('BrokerLevelScreening', testBrokerLevelScreening, 300);
concurrentTest('legacyEvmVaultSwaps', legacyEvmVaultSwaps, 300);
// concurrentTest('DCASwaps', testDCASwaps, 300);
// concurrentTest('CancelOrdersBatch', testCancelOrdersBatch, 240);
// concurrentTest('DepositChannelCreation', depositChannelCreation, 360);
// concurrentTest('BrokerLevelScreening', testBrokerLevelScreening, 300);
// concurrentTest('legacyEvmVaultSwaps', legacyEvmVaultSwaps, 300);
// concurrentTest('VaultSwapFeeCollection', testVaultSwapFeeCollection, 800);

// Tests that only work if there is more than one node
Expand Down

0 comments on commit 588a7fc

Please sign in to comment.