1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/test/unit/actions/config_test.js
2020-05-06 16:26:09 -02:30

33 lines
868 B
JavaScript

import assert from 'assert'
import freeze from 'deep-freeze-strict'
import reducers from '../../../ui/app/ducks'
import * as actionConstants from '../../../ui/app/store/actionConstants'
describe('config view actions', function () {
const initialState = {
metamask: {
rpcTarget: 'foo',
frequentRpcList: [],
},
appState: {
currentView: {
name: 'accounts',
},
},
}
freeze(initialState)
describe('SET_RPC_TARGET', function () {
it('sets the state.metamask.rpcTarget property of the state to the action.value', function () {
const action = {
type: actionConstants.SET_RPC_TARGET,
value: 'foo',
}
const result = reducers(initialState, action)
assert.equal(result.metamask.provider.type, 'rpc')
assert.equal(result.metamask.provider.rpcTarget, 'foo')
})
})
})