aboutsummaryrefslogtreecommitdiffstats
path: root/test/token_registry_wrapper_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/token_registry_wrapper_test.ts')
-rw-r--r--test/token_registry_wrapper_test.ts7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/token_registry_wrapper_test.ts b/test/token_registry_wrapper_test.ts
index 195b2f205..cf2fa267b 100644
--- a/test/token_registry_wrapper_test.ts
+++ b/test/token_registry_wrapper_test.ts
@@ -1,18 +1,15 @@
import * as _ from 'lodash';
import 'mocha';
import * as chai from 'chai';
-import chaiAsPromised = require('chai-as-promised');
-import * as Web3 from 'web3';
+import {ChaiSetup} from './chai_setup';
import {web3Factory} from './utils/web3_factory';
import {ZeroEx} from '../src/0x.js';
import {BlockchainLifecycle} from './utils/blockchain_lifecycle';
-import {Token} from '../src/types';
import {SchemaValidator} from '../src/utils/schema_validator';
import {tokenSchema} from '../src/schemas/token_schema';
-chai.config.includeStack = true;
+ChaiSetup.configure();
const expect = chai.expect;
-chai.use(chaiAsPromised);
const blockchainLifecycle = new BlockchainLifecycle();
const TOKEN_REGISTRY_SIZE_AFTER_MIGRATION = 7;