@0x/contracts-test-utils: Create blockchainTests mocha fixture directive.

`@0x/contracts-test-utils`: Automatically call `chaiSetup.configure()`.
`@0x/contracts-test-utils`: Export `expect` as an alias for `chai.expect`.
This commit is contained in:
Lawrence Forman
2019-07-27 01:07:31 -04:00
parent 1634c90179
commit 7e59110049
5 changed files with 141 additions and 8 deletions

View File

@@ -1,10 +1,6 @@
import * as chai from 'chai';
import * as _ from 'lodash';
import { chaiSetup } from './chai_setup';
chaiSetup.configure();
const expect = chai.expect;
import { expect } from './chai_setup';
class Value<T> {
public value: T;