Update ganache version
This commit is contained in:
@@ -184,7 +184,7 @@ describe('buyQuoteCalculator', () => {
|
|||||||
false,
|
false,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
testHelpers.expectInsufficientLiquidityError(expect, errorFunction, undefined);
|
testHelpers.expectInsufficientLiquidityError(expect, errorFunction, new BigNumber(0));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
it('should not throw if order is fillable', () => {
|
it('should not throw if order is fillable', () => {
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
"@ledgerhq/hw-app-eth": "^4.3.0",
|
"@ledgerhq/hw-app-eth": "^4.3.0",
|
||||||
"@ledgerhq/hw-transport-u2f": "4.24.0",
|
"@ledgerhq/hw-transport-u2f": "4.24.0",
|
||||||
"@types/eth-lightwallet": "^3.0.0",
|
"@types/eth-lightwallet": "^3.0.0",
|
||||||
"@types/ganache-core": "^2.1.0",
|
"@types/ganache-core": "^2.1.2",
|
||||||
"@types/hdkey": "^0.7.0",
|
"@types/hdkey": "^0.7.0",
|
||||||
"@types/web3-provider-engine": "^14.0.0",
|
"@types/web3-provider-engine": "^14.0.0",
|
||||||
"bip39": "^2.5.0",
|
"bip39": "^2.5.0",
|
||||||
@@ -46,7 +46,7 @@
|
|||||||
"ethereum-types": "^1.1.5",
|
"ethereum-types": "^1.1.5",
|
||||||
"ethereumjs-tx": "^1.3.5",
|
"ethereumjs-tx": "^1.3.5",
|
||||||
"ethereumjs-util": "^5.1.1",
|
"ethereumjs-util": "^5.1.1",
|
||||||
"ganache-core": "^2.2.1",
|
"ganache-core": "^2.3.3",
|
||||||
"hdkey": "^0.7.1",
|
"hdkey": "^0.7.1",
|
||||||
"json-rpc-error": "2.0.0",
|
"json-rpc-error": "2.0.0",
|
||||||
"lodash": "^4.17.5",
|
"lodash": "^4.17.5",
|
||||||
|
|||||||
@@ -37,13 +37,13 @@
|
|||||||
"homepage": "https://github.com/0xProject/0x-monorepo/packages/web3-wrapper/README.md",
|
"homepage": "https://github.com/0xProject/0x-monorepo/packages/web3-wrapper/README.md",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@0x/tslint-config": "^2.0.1",
|
"@0x/tslint-config": "^2.0.1",
|
||||||
"@types/ganache-core": "^2.1.0",
|
"@types/ganache-core": "^2.1.2",
|
||||||
"@types/lodash": "4.14.104",
|
"@types/lodash": "4.14.104",
|
||||||
"chai": "^4.0.1",
|
"chai": "^4.0.1",
|
||||||
"chai-as-promised": "^7.1.0",
|
"chai-as-promised": "^7.1.0",
|
||||||
"chai-bignumber": "^2.0.1",
|
"chai-bignumber": "^2.0.1",
|
||||||
"dirty-chai": "^2.0.1",
|
"dirty-chai": "^2.0.1",
|
||||||
"ganache-core": "0xProject/ganache-core#monorepo-dep",
|
"ganache-core": "^2.3.3",
|
||||||
"make-promises-safe": "^1.1.0",
|
"make-promises-safe": "^1.1.0",
|
||||||
"mocha": "^4.1.0",
|
"mocha": "^4.1.0",
|
||||||
"npm-run-all": "^4.1.2",
|
"npm-run-all": "^4.1.2",
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ describe('Web3Wrapper tests', () => {
|
|||||||
describe('#getNodeVersionAsync', () => {
|
describe('#getNodeVersionAsync', () => {
|
||||||
it('gets the node version', async () => {
|
it('gets the node version', async () => {
|
||||||
const nodeVersion = await web3Wrapper.getNodeVersionAsync();
|
const nodeVersion = await web3Wrapper.getNodeVersionAsync();
|
||||||
const NODE_VERSION = 'EthereumJS TestRPC/v2.1.2/ethereum-js';
|
const NODE_VERSION = 'EthereumJS TestRPC/v2.3.3/ethereum-js';
|
||||||
expect(nodeVersion).to.be.equal(NODE_VERSION);
|
expect(nodeVersion).to.be.equal(NODE_VERSION);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user