nifty-wallet/test/unit/actions/config_test.js

43 lines
1.2 KiB
JavaScript
Raw Normal View History

2017-05-04 14:35:10 -07:00
// var jsdom = require('mocha-jsdom')
var assert = require('assert')
var freeze = require('deep-freeze-strict')
var path = require('path')
2016-04-18 11:41:29 -07:00
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
2017-05-04 14:35:10 -07:00
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
2017-05-04 14:35:10 -07:00
describe('config view actions', function () {
var initialState = {
metamask: {
rpcTarget: 'foo',
2017-05-04 14:35:10 -07:00
frequentRpcList: [],
},
appState: {
currentView: {
name: 'accounts',
2017-05-04 14:35:10 -07:00
},
},
}
freeze(initialState)
2017-05-04 14:35:10 -07: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 14:35:10 -07: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 10:37:01 -08:00
value: 'foo',
}
var result = reducers(initialState, action)
2016-05-10 15:42:09 -07:00
assert.equal(result.metamask.provider.type, 'rpc')
2017-03-07 10:37:01 -08:00
assert.equal(result.metamask.provider.rpcTarget, 'foo')
})
})
})