Introduce publicFacingContracts config in all package.jsons, refactor all imports from src in contracts packages
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
import * as _ from 'lodash';
|
||||
import * as process from 'process';
|
||||
|
||||
import { blockchainTests, constants, describe, expect } from '../src';
|
||||
import { expect } from '../src/chai_setup';
|
||||
import { constants } from '../src/constants';
|
||||
import { blockchainTests, describe } from '../src/mocha_blockchain';
|
||||
|
||||
blockchainTests('mocha blockchain extensions', env => {
|
||||
describe('blockchainTests()', () => {
|
||||
|
@@ -1,4 +1,5 @@
|
||||
import { blockchainTests, BlockchainTestsEnvironment, expect } from '../../src';
|
||||
import { expect } from '../../src/chai_setup';
|
||||
import { blockchainTests, BlockchainTestsEnvironment } from '../../src/mocha_blockchain';
|
||||
|
||||
// tslint:disable: no-default-export completed-docs
|
||||
export function append(env: BlockchainTestsEnvironment): void {
|
||||
|
@@ -1,6 +1,7 @@
|
||||
import { AnyRevertError, StringRevertError } from '@0x/utils';
|
||||
|
||||
import { expect } from '../src';
|
||||
import { expect } from '../src/chai_setup';
|
||||
|
||||
import { testWithReferenceFuncAsync } from '../src/test_with_reference';
|
||||
|
||||
async function divAsync(x: number, y: number): Promise<number> {
|
||||
|
Reference in New Issue
Block a user