diff --git a/contracts/integrations/test/bridges/dydx_bridge_mainnet_test.ts b/contracts/integrations/test/bridges/dydx_bridge_mainnet_test.ts index dc34b9c8d5..62d8a66276 100644 --- a/contracts/integrations/test/bridges/dydx_bridge_mainnet_test.ts +++ b/contracts/integrations/test/bridges/dydx_bridge_mainnet_test.ts @@ -14,7 +14,7 @@ import { contractAddresses, dydxAccountOwner } from '../mainnet_fork_utils'; import { dydxEvents } from './abi/dydxEvents'; -blockchainTests.fork.resets('Mainnet dydx bridge tests', env => { +blockchainTests.fork.skip('Mainnet dydx bridge tests', env => { let testContract: DydxBridgeContract; // random account to receive tokens from dydx const receiver = '0x986ccf5234d9cfbb25246f1a5bfa51f4ccfcb308'; diff --git a/contracts/integrations/test/mainnet_configs_test.ts b/contracts/integrations/test/mainnet_configs_test.ts index d5fa4aacba..eec17117b5 100644 --- a/contracts/integrations/test/mainnet_configs_test.ts +++ b/contracts/integrations/test/mainnet_configs_test.ts @@ -7,7 +7,7 @@ import { BigNumber } from '@0x/utils'; import { contractAddresses, getContractwrappers } from './mainnet_fork_utils'; -blockchainTests.fork.resets('Mainnet configs tests', env => { +blockchainTests.live('Mainnet configs tests', env => { let contractWrappers: ContractWrappers; before(async () => { diff --git a/contracts/test-utils/src/web3_wrapper.ts b/contracts/test-utils/src/web3_wrapper.ts index abd90d0997..88b79d3017 100644 --- a/contracts/test-utils/src/web3_wrapper.ts +++ b/contracts/test-utils/src/web3_wrapper.ts @@ -20,7 +20,7 @@ export let providerConfigs: Web3Config = { shouldUseInProcessGanache: true, shouldAllowUnlimitedContractSize: true, hardfork: 'istanbul', - unlocked_accounts: ['0x6cc5f688a315f3dc28a7781717a9a798a59fda7b'], + unlocked_accounts: ['0x6cc5f688a315f3dc28a7781717a9a798a59fda7b', '0x55dc8f21d20d4c6ed3c82916a438a413ca68e335'], }; export const provider: Web3ProviderEngine = web3Factory.getRpcProvider(providerConfigs);