mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
call initializeProvider where necessary
This commit is contained in:
parent
93f695d3c6
commit
30a59bb867
@ -18,7 +18,6 @@ describe('NetworkController', function () {
|
||||
.reply(200)
|
||||
|
||||
networkController = new NetworkController()
|
||||
networkController.initializeProvider(networkControllerProviderConfig)
|
||||
})
|
||||
|
||||
afterEach(function () {
|
||||
@ -37,7 +36,6 @@ describe('NetworkController', function () {
|
||||
|
||||
describe('#getNetworkState', function () {
|
||||
it('should return loading when new', function () {
|
||||
networkController = new NetworkController()
|
||||
const networkState = networkController.getNetworkState()
|
||||
assert.equal(networkState, 'loading', 'network is loading')
|
||||
})
|
||||
@ -53,11 +51,13 @@ describe('NetworkController', function () {
|
||||
|
||||
describe('#setProviderType', function () {
|
||||
it('should update provider.type', function () {
|
||||
networkController.initializeProvider(networkControllerProviderConfig)
|
||||
networkController.setProviderType('mainnet')
|
||||
const type = networkController.getProviderConfig().type
|
||||
assert.equal(type, 'mainnet', 'provider type is updated')
|
||||
})
|
||||
it('should set the network to loading', function () {
|
||||
networkController.initializeProvider(networkControllerProviderConfig)
|
||||
networkController.setProviderType('mainnet')
|
||||
const loading = networkController.isNetworkLoading()
|
||||
assert.ok(loading, 'network is loading')
|
||||
|
Loading…
Reference in New Issue
Block a user