diff options
author | Dan Miller <danjm.com@gmail.com> | 2019-05-08 01:52:02 +0800 |
---|---|---|
committer | Dan Miller <danjm.com@gmail.com> | 2019-05-08 01:57:20 +0800 |
commit | b481497246316c90ab95cf14a393d1f8ae7eeafc (patch) | |
tree | b5f2be5575554e97f06aab13a55b7c22f5491c8f /test/integration/lib/send-new-ui.js | |
parent | 581128503c161bc3b569ca5d87e4eea8b0d15150 (diff) | |
download | tangerine-wallet-browser-b481497246316c90ab95cf14a393d1f8ae7eeafc.tar.gz tangerine-wallet-browser-b481497246316c90ab95cf14a393d1f8ae7eeafc.tar.zst tangerine-wallet-browser-b481497246316c90ab95cf14a393d1f8ae7eeafc.zip |
Fix fetch and ethquery mocks in integration tests
Diffstat (limited to 'test/integration/lib/send-new-ui.js')
-rw-r--r-- | test/integration/lib/send-new-ui.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/integration/lib/send-new-ui.js b/test/integration/lib/send-new-ui.js index 6a58611d1..85487a59f 100644 --- a/test/integration/lib/send-new-ui.js +++ b/test/integration/lib/send-new-ui.js @@ -25,6 +25,7 @@ global.ethereumProvider = {} async function runSendFlowTest (assert, done) { const tempFetch = global.fetch + const realFetch = window.fetch.bind(window) global.fetch = (...args) => { if (args[0] === 'https://ethgasstation.info/json/ethgasAPI.json') { return Promise.resolve({ json: () => Promise.resolve(JSON.parse(fetchMockResponses.ethGasBasic)) }) @@ -35,7 +36,7 @@ async function runSendFlowTest (assert, done) { } else if (args[0].match(/chromeextensionmm/)) { return Promise.resolve({ json: () => Promise.resolve(JSON.parse(fetchMockResponses.metametrics)) }) } - return window.fetch(...args) + return realFetch.fetch(...args) } console.log('*** start runSendFlowTest') |