diff options
Diffstat (limited to 'packages/sol-compiler/test/util')
-rw-r--r-- | packages/sol-compiler/test/util/chai_setup.ts | 13 | ||||
-rw-r--r-- | packages/sol-compiler/test/util/constants.ts | 11 | ||||
-rw-r--r-- | packages/sol-compiler/test/util/provider.ts | 7 |
3 files changed, 0 insertions, 31 deletions
diff --git a/packages/sol-compiler/test/util/chai_setup.ts b/packages/sol-compiler/test/util/chai_setup.ts deleted file mode 100644 index 1a8733093..000000000 --- a/packages/sol-compiler/test/util/chai_setup.ts +++ /dev/null @@ -1,13 +0,0 @@ -import * as chai from 'chai'; -import chaiAsPromised = require('chai-as-promised'); -import ChaiBigNumber = require('chai-bignumber'); -import * as dirtyChai from 'dirty-chai'; - -export const chaiSetup = { - configure(): void { - chai.config.includeStack = true; - chai.use(ChaiBigNumber()); - chai.use(dirtyChai); - chai.use(chaiAsPromised); - }, -}; diff --git a/packages/sol-compiler/test/util/constants.ts b/packages/sol-compiler/test/util/constants.ts deleted file mode 100644 index a74ea1b68..000000000 --- a/packages/sol-compiler/test/util/constants.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { BigNumber } from '@0x/utils'; - -export const constants = { - networkId: 0, - optimizerEnabled: false, - gasPrice: new BigNumber(20000000000), - timeoutMs: 30000, - zrxTokenAddress: '0xe41d2489571d322189246dafa5ebde1f4699f498', - tokenTransferProxyAddress: '0x8da0d80f5007ef1e431dd2127178d224e32c2ef4', - contracts: '*' as '*', -}; diff --git a/packages/sol-compiler/test/util/provider.ts b/packages/sol-compiler/test/util/provider.ts deleted file mode 100644 index 4561a1699..000000000 --- a/packages/sol-compiler/test/util/provider.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { web3Factory } from '@0x/dev-utils'; -import { Provider } from 'ethereum-types'; - -const providerConfigs = { shouldUseInProcessGanache: true }; -const provider: Provider = web3Factory.getRpcProvider(providerConfigs); - -export { provider }; |