aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-10 22:07:03 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-10 22:07:03 +0800
commitfad23af55e997eea764f1d4e8e698c0ace3c351b (patch)
tree73cfa4bdcc9fd359cd4d203b848885a222ff29b0
parentd727bed6ab6fef90717a45845c544b409657e3c2 (diff)
downloaddexon-sol-tools-fad23af55e997eea764f1d4e8e698c0ace3c351b.tar
dexon-sol-tools-fad23af55e997eea764f1d4e8e698c0ace3c351b.tar.gz
dexon-sol-tools-fad23af55e997eea764f1d4e8e698c0ace3c351b.tar.bz2
dexon-sol-tools-fad23af55e997eea764f1d4e8e698c0ace3c351b.tar.lz
dexon-sol-tools-fad23af55e997eea764f1d4e8e698c0ace3c351b.tar.xz
dexon-sol-tools-fad23af55e997eea764f1d4e8e698c0ace3c351b.tar.zst
dexon-sol-tools-fad23af55e997eea764f1d4e8e698c0ace3c351b.zip
Fix some tests
-rw-r--r--test/0x.js_test.ts24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts
index 3a1f8514e..346ef69f8 100644
--- a/test/0x.js_test.ts
+++ b/test/0x.js_test.ts
@@ -21,8 +21,8 @@ describe('ZeroEx library', () => {
// Instantiate the contract instances with the current provider
await (zeroEx.exchange as any)._getExchangeContractAsync();
await (zeroEx.tokenRegistry as any)._getTokenRegistryContractAsync();
- expect((zeroEx.exchange as any).exchangeContractIfExists).to.not.be.undefined();
- expect((zeroEx.tokenRegistry as any).tokenRegistryContractIfExists).to.not.be.undefined();
+ expect((zeroEx.exchange as any)._exchangeContractIfExists).to.not.be.undefined();
+ expect((zeroEx.tokenRegistry as any)._tokenRegistryContractIfExists).to.not.be.undefined();
const newProvider = web3Factory.getRpcProvider();
// Add property to newProvider so that we can differentiate it from old provider
@@ -30,15 +30,15 @@ describe('ZeroEx library', () => {
await zeroEx.setProviderAsync(newProvider);
// Check that contractInstances with old provider are removed after provider update
- expect((zeroEx.exchange as any).exchangeContractIfExists).to.be.undefined();
- expect((zeroEx.tokenRegistry as any).tokenRegistryContractIfExists).to.be.undefined();
+ expect((zeroEx.exchange as any)._exchangeContractIfExists).to.be.undefined();
+ expect((zeroEx.tokenRegistry as any)._tokenRegistryContractIfExists).to.be.undefined();
// Check that all nested web3 instances return the updated provider
- const nestedWeb3WrapperProvider = (zeroEx as any).web3Wrapper.getCurrentProvider();
+ const nestedWeb3WrapperProvider = (zeroEx as any)._web3Wrapper.getCurrentProvider();
expect((nestedWeb3WrapperProvider as any).zeroExTestId).to.be.a('number');
- const exchangeWeb3WrapperProvider = (zeroEx.exchange as any).web3Wrapper.getCurrentProvider();
+ const exchangeWeb3WrapperProvider = (zeroEx.exchange as any)._web3Wrapper.getCurrentProvider();
expect((exchangeWeb3WrapperProvider as any).zeroExTestId).to.be.a('number');
- const tokenRegistryWeb3WrapperProvider = (zeroEx.tokenRegistry as any).web3Wrapper.getCurrentProvider();
+ const tokenRegistryWeb3WrapperProvider = (zeroEx.tokenRegistry as any)._web3Wrapper.getCurrentProvider();
expect((tokenRegistryWeb3WrapperProvider as any).zeroExTestId).to.be.a('number');
});
});
@@ -154,7 +154,7 @@ describe('ZeroEx library', () => {
const zeroEx = new ZeroEx(web3);
stubs = [
- Sinon.stub((zeroEx as any), 'getExchangeAddressAsync')
+ Sinon.stub((zeroEx as any), '_getExchangeAddressAsync')
.returns(Promise.resolve(exchangeContractAddress)),
];
@@ -197,9 +197,9 @@ describe('ZeroEx library', () => {
s: '0x050aa3cc1f2c435e67e114cdce54b9527b4f50548342401bc5d2b77adbdacb02',
};
stubs = [
- Sinon.stub((zeroEx as any).web3Wrapper, 'getNodeVersionAsync')
+ Sinon.stub((zeroEx as any)._web3Wrapper, 'getNodeVersionAsync')
.returns(Promise.resolve(newParityNodeVersion)),
- Sinon.stub((zeroEx as any).web3Wrapper, 'signTransactionAsync')
+ Sinon.stub((zeroEx as any)._web3Wrapper, 'signTransactionAsync')
.returns(Promise.resolve(signature)),
Sinon.stub(ZeroEx, 'isValidSignature').returns(true),
];
@@ -218,9 +218,9 @@ describe('ZeroEx library', () => {
s: '0x2dea66f25a608bbae457e020fb6decb763deb8b7192abab624997242da248960',
};
stubs = [
- Sinon.stub((zeroEx as any).web3Wrapper, 'getNodeVersionAsync')
+ Sinon.stub((zeroEx as any)._web3Wrapper, 'getNodeVersionAsync')
.returns(Promise.resolve(newParityNodeVersion)),
- Sinon.stub((zeroEx as any).web3Wrapper, 'signTransactionAsync')
+ Sinon.stub((zeroEx as any)._web3Wrapper, 'signTransactionAsync')
.returns(Promise.resolve(signature)),
Sinon.stub(ZeroEx, 'isValidSignature').returns(true),
];