You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
859 B
32 lines
859 B
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: {
|
|
rpcUrl: 'foo',
|
|
frequentRpcList: [],
|
|
},
|
|
appState: {
|
|
currentView: {
|
|
name: 'accounts',
|
|
},
|
|
},
|
|
}
|
|
freeze(initialState)
|
|
|
|
describe('SET_RPC_TARGET', function () {
|
|
it('sets the state.metamask.rpcUrl 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.rpcUrl, 'foo')
|
|
})
|
|
})
|
|
})
|
|
|