diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-12-12 08:37:07 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2018-12-19 05:36:05 +0800 |
commit | 22fd23643cb26ba1b79e9b13e5ef41c97ab7fe6a (patch) | |
tree | a39cf20faf2f83bc3d4d700559764a49df0c48b4 /contracts/extensions | |
parent | a1266a3341cdc899a9090c90d6cf30b0ceb1db94 (diff) | |
download | dexon-sol-tools-22fd23643cb26ba1b79e9b13e5ef41c97ab7fe6a.tar dexon-sol-tools-22fd23643cb26ba1b79e9b13e5ef41c97ab7fe6a.tar.gz dexon-sol-tools-22fd23643cb26ba1b79e9b13e5ef41c97ab7fe6a.tar.bz2 dexon-sol-tools-22fd23643cb26ba1b79e9b13e5ef41c97ab7fe6a.tar.lz dexon-sol-tools-22fd23643cb26ba1b79e9b13e5ef41c97ab7fe6a.tar.xz dexon-sol-tools-22fd23643cb26ba1b79e9b13e5ef41c97ab7fe6a.tar.zst dexon-sol-tools-22fd23643cb26ba1b79e9b13e5ef41c97ab7fe6a.zip |
Run all tests for extensions
Diffstat (limited to 'contracts/extensions')
-rw-r--r-- | contracts/extensions/test/extensions/balance_threshold_filter.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contracts/extensions/test/extensions/balance_threshold_filter.ts b/contracts/extensions/test/extensions/balance_threshold_filter.ts index ced9d6e25..6350c019f 100644 --- a/contracts/extensions/test/extensions/balance_threshold_filter.ts +++ b/contracts/extensions/test/extensions/balance_threshold_filter.ts @@ -46,7 +46,7 @@ interface ValidatedAddressesLog { args: { addresses: string[] }; } -describe.only(ContractName.BalanceThresholdFilter, () => { +describe(ContractName.BalanceThresholdFilter, () => { const takerAssetAmount = Web3Wrapper.toBaseUnitAmount(new BigNumber(500), DECIMALS_DEFAULT); const makerAssetAmount = Web3Wrapper.toBaseUnitAmount(new BigNumber(1000), DECIMALS_DEFAULT); const takerAssetFillAmount = Web3Wrapper.toBaseUnitAmount(new BigNumber(250), DECIMALS_DEFAULT); |