aboutsummaryrefslogtreecommitdiffstats
path: root/ui/test/unit/actions/set_selected_account_test.js
blob: 1af6c964fdd9417f56f6a078ea7c6d1669fadd56 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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)
  });
});