aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/infura-controller-test.js
blob: 9128677640828599bc3a4c0f5c01eca4f28303b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// polyfill fetch
// global.fetch = function () {return Promise.resolve({
//     json: () => { return Promise.resolve({"mainnet": "ok", "ropsten": "degraded", "kovan": "down", "rinkeby": "ok"}) },
//   })
// }
// const assert = require('assert')
// const InfuraController = require('../../app/scripts/controllers/infura')
//
// describe('infura-controller', function () {
//   var infuraController
//
//   beforeEach(function () {
//     infuraController = new InfuraController()
//   })
//
//   describe('network status queries', function () {
//     describe('#checkInfuraNetworkStatus', function () {
//       it('should return an object reflecting the network statuses', function (done) {
//         this.timeout(15000)
//         infuraController.checkInfuraNetworkStatus()
//           .then(() => {
//             const networkStatus = infuraController.store.getState().infuraNetworkStatus
//             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)
//
//       })
//     })
//   })
// })