diff --git a/contracts/core/exchange-wrappers/KyberNetworkWrapper.sol b/contracts/core/exchange-wrappers/KyberNetworkWrapper.sol index ecd9c4045..0d8cf4f47 100644 --- a/contracts/core/exchange-wrappers/KyberNetworkWrapper.sol +++ b/contracts/core/exchange-wrappers/KyberNetworkWrapper.sol @@ -121,6 +121,7 @@ contract KyberNetworkWrapper { * fillQuantity Quantity of Set to be filled * attemptedfillQuantity Quantity of Set taker attempted to fill * + * @param _exchangeData Standard exchange wrapper interface object containing exchange metadata * @param _tradesData Arbitrary bytes data for any information to pass to the exchange * @return address[] The addresses of required components * @return uint256[] The quantities of required components retrieved by the wrapper diff --git a/contracts/core/exchange-wrappers/TakerWalletWrapper.sol b/contracts/core/exchange-wrappers/TakerWalletWrapper.sol index 00f7f50e9..fef1a88f7 100644 --- a/contracts/core/exchange-wrappers/TakerWalletWrapper.sol +++ b/contracts/core/exchange-wrappers/TakerWalletWrapper.sol @@ -72,6 +72,7 @@ contract TakerWalletWrapper { * fillQuantity Quantity of Set to be filled * attemptedfillQuantity Quantity of Set taker attempted to fill * + * @param _exchangeData Standard exchange wrapper interface object containing exchange metadata * @param _transfersData Arbitrary bytes data for any information to pass to the exchange * @return address[] The addresses of required components * @return uint256[] The quantities of required components retrieved by the wrapper diff --git a/contracts/core/exchange-wrappers/ZeroExExchangeWrapper.sol b/contracts/core/exchange-wrappers/ZeroExExchangeWrapper.sol index c15a3af10..a15aa26b8 100644 --- a/contracts/core/exchange-wrappers/ZeroExExchangeWrapper.sol +++ b/contracts/core/exchange-wrappers/ZeroExExchangeWrapper.sol @@ -95,6 +95,7 @@ contract ZeroExExchangeWrapper { * fillQuantity Quantity of Set to be filled * attemptedfillQuantity Quantity of Set taker attempted to fill * + * @param _exchangeData Standard exchange wrapper interface object containing exchange metadata * @param _ordersData Arbitrary bytes data for any information to pass to the exchange * @return address[] The addresses of required components * @return uint256[] The quantities of required components retrieved by the wrapper diff --git a/contracts/core/modules/IssuanceOrderModule.sol b/contracts/core/modules/IssuanceOrderModule.sol index 8d1566e9e..73fbfbce3 100644 --- a/contracts/core/modules/IssuanceOrderModule.sol +++ b/contracts/core/modules/IssuanceOrderModule.sol @@ -386,6 +386,7 @@ contract IssuanceOrderModule is * fillQuantity Quantity of Set to be filled * attemptedfillQuantity Quantity of Set taker attempted to fill * + * @param _exchangeData Standard exchange wrapper interface object containing exchange metadata * @param _exchange Address of exchange wrapper being called * @param _bodyData Arbitrary bytes data for orders to be executed on exchange */ diff --git a/package.json b/package.json index 065b87858..c07772fa4 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "precommit": "lint-staged", "prepare-test": "yarn setup && yarn transpile", "setup": "yarn clean && yarn compile && yarn generate-typings && yarn deploy:development", - "test": "yarn prepare-test && truffle test `find transpiled/test -name 'takerWalletWrapper.spec.js'`", + "test": "yarn prepare-test && truffle test `find transpiled/test -name '*.spec.js'`", "test-continuous": "truffle test", "transpile": "tsc", "prepublishOnly": "yarn dist" diff --git a/test/contracts/core/exchange-wrappers/takerWalletWrapper.spec.ts b/test/contracts/core/exchange-wrappers/takerWalletWrapper.spec.ts index 021d96055..0c42a717c 100644 --- a/test/contracts/core/exchange-wrappers/takerWalletWrapper.spec.ts +++ b/test/contracts/core/exchange-wrappers/takerWalletWrapper.spec.ts @@ -132,7 +132,7 @@ contract('TakerWalletWrapper', accounts => { ); } - it.only('transfers the token from the taker', async () => { + it('transfers the token from the taker', async () => { const existingBalance = await componentToken.balanceOf.callAsync(takerAccount); await subject();