mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 06:34:27 +01:00
29 lines
812 B
JavaScript
29 lines
812 B
JavaScript
|
var jsdom = require('mocha-jsdom')
|
||
|
var assert = require('assert')
|
||
|
var freeze = require('deep-freeze-strict')
|
||
|
var path = require('path')
|
||
|
|
||
|
var actions = require(path.join(__dirname, '..', '..', '..', 'app', 'actions.js'))
|
||
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'app', 'reducers.js'))
|
||
|
|
||
|
describe('SET_SELECTED_ACCOUNT', function() {
|
||
|
|
||
|
it('sets the state.appState.activeAddress property of the state to the action.value', function() {
|
||
|
var initialState = {
|
||
|
appState: {
|
||
|
activeAddress: 'foo',
|
||
|
}
|
||
|
}
|
||
|
freeze(initialState)
|
||
|
|
||
|
const action = {
|
||
|
type: actions.SET_SELECTED_ACCOUNT,
|
||
|
value: 'bar',
|
||
|
}
|
||
|
freeze(action)
|
||
|
|
||
|
var resultingState = reducers(initialState, action)
|
||
|
assert.equal(resultingState.appState.activeAddress, action.value)
|
||
|
});
|
||
|
});
|