1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 21:00:23 +02:00
metamask-extension/test/unit/actions/config_test.js

33 lines
863 B
JavaScript
Raw Normal View History

import assert from 'assert'
import freeze from 'deep-freeze-strict'
import reducers from '../../../ui/app/ducks'
import actionConstants from '../../../ui/app/store/actionConstants'
2017-05-04 23:35:10 +02:00
describe('config view actions', function () {
const initialState = {
metamask: {
rpcTarget: 'foo',
2017-05-04 23:35:10 +02:00
frequentRpcList: [],
},
appState: {
currentView: {
name: 'accounts',
2017-05-04 23:35:10 +02:00
},
},
}
freeze(initialState)
2017-05-04 23:35:10 +02:00
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,
2017-03-07 19:37:01 +01:00
value: 'foo',
}
const result = reducers(initialState, action)
2016-05-11 00:42:09 +02:00
assert.equal(result.metamask.provider.type, 'rpc')
2017-03-07 19:37:01 +01:00
assert.equal(result.metamask.provider.rpcTarget, 'foo')
})
})
})