aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/test
diff options
context:
space:
mode:
authorBrandon Millman <brandon.millman@gmail.com>2017-12-18 12:30:14 +0800
committerBrandon Millman <brandon.millman@gmail.com>2017-12-18 12:30:14 +0800
commit4dc6694651a5fba5b4e280f9eb3d5da528057cc2 (patch)
tree08b1f8f2dd310f40bacefe0805d6d2a115616ccd /packages/0x.js/test
parentfe8f2d87c79cb25a7879c2e737dbdd64b7c40f60 (diff)
downloaddexon-sol-tools-4dc6694651a5fba5b4e280f9eb3d5da528057cc2.tar
dexon-sol-tools-4dc6694651a5fba5b4e280f9eb3d5da528057cc2.tar.gz
dexon-sol-tools-4dc6694651a5fba5b4e280f9eb3d5da528057cc2.tar.bz2
dexon-sol-tools-4dc6694651a5fba5b4e280f9eb3d5da528057cc2.tar.lz
dexon-sol-tools-4dc6694651a5fba5b4e280f9eb3d5da528057cc2.tar.xz
dexon-sol-tools-4dc6694651a5fba5b4e280f9eb3d5da528057cc2.tar.zst
dexon-sol-tools-4dc6694651a5fba5b4e280f9eb3d5da528057cc2.zip
Move web3 import after subprovider imports in test web3_factory
Diffstat (limited to 'packages/0x.js/test')
-rw-r--r--packages/0x.js/test/0x.js_test.ts6
-rw-r--r--packages/0x.js/test/utils/web3_factory.ts8
2 files changed, 10 insertions, 4 deletions
diff --git a/packages/0x.js/test/0x.js_test.ts b/packages/0x.js/test/0x.js_test.ts
index e1ceb12c8..56585fea0 100644
--- a/packages/0x.js/test/0x.js_test.ts
+++ b/packages/0x.js/test/0x.js_test.ts
@@ -82,9 +82,9 @@ describe('ZeroEx library', () => {
it('should return true if the signature does pertain to the dataHex & address', async () => {
const isValidSignatureLocal = ZeroEx.isValidSignature(dataHex, signature, address);
expect(isValidSignatureLocal).to.be.true();
- const isValidSignatureOnContract = await (zeroEx.exchange as any)
- ._isValidSignatureUsingContractCallAsync(dataHex, signature, address);
- return expect(isValidSignatureOnContract).to.be.true();
+ return expect(
+ (zeroEx.exchange as any)._isValidSignatureUsingContractCallAsync(dataHex, signature, address),
+ ).to.become(true);
});
});
describe('#generateSalt', () => {
diff --git a/packages/0x.js/test/utils/web3_factory.ts b/packages/0x.js/test/utils/web3_factory.ts
index 6f72cec58..7e65a4381 100644
--- a/packages/0x.js/test/utils/web3_factory.ts
+++ b/packages/0x.js/test/utils/web3_factory.ts
@@ -3,7 +3,6 @@
// we are not running in a browser env.
// Filed issue: https://github.com/ethereum/web3.js/issues/844
(global as any).XMLHttpRequest = undefined;
-import * as Web3 from 'web3';
import ProviderEngine = require('web3-provider-engine');
import RpcSubprovider = require('web3-provider-engine/subproviders/rpc');
@@ -12,6 +11,13 @@ import {FakeGasEstimateSubprovider} from './subproviders/fake_gas_estimate_subpr
import {constants} from './constants';
+// HACK: web3 leaks XMLHttpRequest into the global scope and causes requests to hang
+// because they are using the wrong XHR package.
+// importing web3 after subproviders fixes this issue
+// Filed issue: https://github.com/ethereum/web3.js/issues/844
+// tslint:disable-next-line:ordered-imports
+import * as Web3 from 'web3';
+
export const web3Factory = {
create(hasAddresses: boolean = true): Web3 {
const provider = this.getRpcProvider(hasAddresses);