mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
import assert from 'assert'
|
|
import freeze from 'deep-freeze-strict'
|
|
import reducers from '../../../ui/app/ducks'
|
|
import * as actions from '../../../ui/app/store/actions'
|
|
|
|
describe('config view actions', function () {
|
|
const initialState = {
|
|
metamask: {
|
|
rpcTarget: 'foo',
|
|
frequentRpcList: [],
|
|
},
|
|
appState: {
|
|
currentView: {
|
|
name: 'accounts',
|
|
},
|
|
},
|
|
}
|
|
freeze(initialState)
|
|
|
|
describe('SHOW_CONFIG_PAGE', function () {
|
|
it('should set appState.currentView.name to config', function () {
|
|
const result = reducers(initialState, actions.showConfigPage())
|
|
assert.equal(result.appState.currentView.name, 'config')
|
|
})
|
|
})
|
|
|
|
describe('SET_RPC_TARGET', function () {
|
|
it('sets the state.metamask.rpcTarget property of the state to the action.value', function () {
|
|
const action = {
|
|
type: actions.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')
|
|
})
|
|
})
|
|
})
|