Files
protocol/contracts/test-utils/src/chai_setup.ts
Lawrence Forman 7e59110049 @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`.
2019-07-30 16:59:52 -04:00

8 lines
191 B
TypeScript

import { chaiSetup } from '@0x/dev-utils';
export { chaiSetup } from '@0x/dev-utils';
import * as chai from 'chai';
// Set up chai.
chaiSetup.configure();
export const expect = chai.expect;