1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00
metamask-extension/test/unit/actions/config_test.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-05-04 23:35:10 +02:00
// var jsdom = require('mocha-jsdom')
var assert = require('assert')
var freeze = require('deep-freeze-strict')
var path = require('path')
2016-04-18 20:41:29 +02:00
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
2017-05-04 23:35:10 +02:00
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
2017-05-04 23:35:10 +02:00
describe('config view actions', function () {
var 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('SHOW_CONFIG_PAGE', function () {
it('should set appState.currentView.name to config', function () {
var result = reducers(initialState, actions.showConfigPage())
assert.equal(result.appState.currentView.name, 'config')
})
})
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: actions.SET_RPC_TARGET,
2017-03-07 19:37:01 +01:00
value: 'foo',
}
var 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')
})
})
})