diff options
author | Greg Hysen <greg.hysen@gmail.com> | 2018-06-07 08:14:13 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2018-06-08 06:39:40 +0800 |
commit | db086de84ae7a238b91b5ce79fcc1a8e4c830ac5 (patch) | |
tree | e4e94a44b0dc0e7f99ab44fc968ff4d7457de68d /packages/contracts | |
parent | 37684c6af0d2962f7c7822dd14531787bd7b4212 (diff) | |
download | dexon-sol-tools-db086de84ae7a238b91b5ce79fcc1a8e4c830ac5.tar dexon-sol-tools-db086de84ae7a238b91b5ce79fcc1a8e4c830ac5.tar.gz dexon-sol-tools-db086de84ae7a238b91b5ce79fcc1a8e4c830ac5.tar.bz2 dexon-sol-tools-db086de84ae7a238b91b5ce79fcc1a8e4c830ac5.tar.lz dexon-sol-tools-db086de84ae7a238b91b5ce79fcc1a8e4c830ac5.tar.xz dexon-sol-tools-db086de84ae7a238b91b5ce79fcc1a8e4c830ac5.tar.zst dexon-sol-tools-db086de84ae7a238b91b5ce79fcc1a8e4c830ac5.zip |
Union types for generalized decodeAssetData
Diffstat (limited to 'packages/contracts')
-rw-r--r-- | packages/contracts/test/asset_proxy/decoder.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/contracts/test/asset_proxy/decoder.ts b/packages/contracts/test/asset_proxy/decoder.ts index 6a60c07bb..2577dbba5 100644 --- a/packages/contracts/test/asset_proxy/decoder.ts +++ b/packages/contracts/test/asset_proxy/decoder.ts @@ -1,6 +1,6 @@ import { BlockchainLifecycle, devConstants, web3Factory } from '@0xproject/dev-utils'; import { assetProxyUtils, generatePseudoRandomSalt } from '@0xproject/order-utils'; -import { AssetData, AssetProxyId, ERC20AssetData, ERC721AssetData } from '@0xproject/types'; +import { AssetProxyId, ERC20AssetData, ERC721AssetData } from '@0xproject/types'; import { BigNumber } from '@0xproject/utils'; import { Web3Wrapper } from '@0xproject/web3-wrapper'; import BN = require('bn.js'); @@ -19,7 +19,7 @@ chaiSetup.configure(); const expect = chai.expect; const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper); -describe('TestAssetDataDecoders', () => { +describe.only('TestAssetDataDecoders', () => { let owner: string; let testAssetProxyDecoder: TestAssetDataDecodersContract; let testAddress: string; |