1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 01:39:44 +01:00

add done and stub fetch

This commit is contained in:
frankiebee 2017-06-22 13:46:08 -07:00
parent 199663c0a4
commit 1ddcbaad5b

View File

@ -1,8 +1,9 @@
// polyfill fetch
global.fetch = global.fetch || require('isomorphic-fetch')
global.fetch = global.fetch || function () {return Promise.resolve({
json: () => { return Promise.resolve({"mainnet": "ok", "ropsten": "degraded", "kovan": "down", "rinkeby": "ok"}) },
})
}
const assert = require('assert')
const nock = require('nock')
const InfuraController = require('../../app/scripts/controllers/infura')
describe('infura-controller', function () {
@ -14,20 +15,20 @@ describe('infura-controller', function () {
describe('network status queries', function () {
describe('#checkInfuraNetworkStatus', function () {
it('should return an object reflecting the network statuses', function () {
it('should return an object reflecting the network statuses', function (done) {
this.timeout(15000)
nock('https://api.infura.io')
.get('/v1/status/metamask')
.reply(200, '{"mainnet": "ok", "ropsten": "degraded", "kovan": "down", "rinkeby": "ok"}')
infuraController.checkInfuraNetworkStatus()
.then(() => {
const networkStatus = infuraController.store.getState().infuraNetworkStatus
const networkStatus2 = infuraController.store.getState()
assert.equal(Object.keys(networkStatus).length, 4)
assert.equal(networkStatus.mainnet, 'ok')
assert.equal(networkStatus.ropsten, 'degraded')
assert.equal(networkStatus.kovan, 'down')
})
.then(() => done())
.catch(done)
})
})
})