`@0x/contracts-test-utils`: Automatically call `chaiSetup.configure()`. `@0x/contracts-test-utils`: Export `expect` as an alias for `chai.expect`.
8 lines
191 B
TypeScript
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;
|