diff options
author | Remco Bloemen <remco@wicked.ventures> | 2018-05-28 19:16:05 +0800 |
---|---|---|
committer | Greg Hysen <greg.hysen@gmail.com> | 2018-06-08 06:38:47 +0800 |
commit | 27351c9a902b945b7507e5c76e77dcc7cae855f8 (patch) | |
tree | 26f66ce3ea3a914040fbf98a81f7970e3976024b | |
parent | 76b918d40e3bb485cdd45149888f012d9ec2b67f (diff) | |
download | dexon-sol-tools-27351c9a902b945b7507e5c76e77dcc7cae855f8.tar dexon-sol-tools-27351c9a902b945b7507e5c76e77dcc7cae855f8.tar.gz dexon-sol-tools-27351c9a902b945b7507e5c76e77dcc7cae855f8.tar.bz2 dexon-sol-tools-27351c9a902b945b7507e5c76e77dcc7cae855f8.tar.lz dexon-sol-tools-27351c9a902b945b7507e5c76e77dcc7cae855f8.tar.xz dexon-sol-tools-27351c9a902b945b7507e5c76e77dcc7cae855f8.tar.zst dexon-sol-tools-27351c9a902b945b7507e5c76e77dcc7cae855f8.zip |
Cleanup test script
-rw-r--r-- | packages/contracts/test/libraries/lib_mem.ts | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/packages/contracts/test/libraries/lib_mem.ts b/packages/contracts/test/libraries/lib_mem.ts index 24f933ad8..8658a89b0 100644 --- a/packages/contracts/test/libraries/lib_mem.ts +++ b/packages/contracts/test/libraries/lib_mem.ts @@ -1,22 +1,13 @@ -import { LogWithDecodedArgs, TransactionReceiptWithDecodedLogs, ZeroEx } from '0x.js'; -import { BlockchainLifecycle, devConstants, web3Factory } from '@0xproject/dev-utils'; import { BigNumber } from '@0xproject/utils'; -import { Web3Wrapper } from '@0xproject/web3-wrapper'; -import BN = require('bn.js'); import * as chai from 'chai'; -import ethUtil = require('ethereumjs-util'); -import * as Web3 from 'web3'; import { TestLibMemContract } from '../../src/contract_wrappers/generated/test_lib_mem'; import { artifacts } from '../../src/utils/artifacts'; import { chaiSetup } from '../../src/utils/chai_setup'; -import { constants } from '../../src/utils/constants'; -import { AssetProxyId } from '../../src/utils/types'; import { provider, txDefaults, web3Wrapper } from '../../src/utils/web3_wrapper'; chaiSetup.configure(); const expect = chai.expect; -const blockchainLifecycle = new BlockchainLifecycle(web3Wrapper); // BUG: Ideally we would use Buffer.from(memory).toString('hex') // https://github.com/Microsoft/TypeScript/issues/23155 @@ -37,12 +28,6 @@ describe('LibMem', () => { // Deploy TestLibMem testLibMem = await TestLibMemContract.deployFrom0xArtifactAsync(artifacts.TestLibMem, provider, txDefaults); }); - beforeEach(async () => { - await blockchainLifecycle.startAsync(); - }); - afterEach(async () => { - await blockchainLifecycle.revertAsync(); - }); describe('memcpy', () => { @@ -62,7 +47,7 @@ describe('LibMem', () => { [128, 0, 11, 'eleven bytes'], [128, 0, 32, 'one word'], [128, 0, 72, 'two words and eight bytes'], - [128, 0, 100, 'three words and four bytes'] + [128, 0, 100, 'three words and four bytes'], ]; // Construct test cases |