aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/actions/view_info_test.js
blob: 5785a368c4bb660fe8381b91784edce4a0fc2874 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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, '..', '..', '..', 'ui', 'app', 'store', 'actions.js'))
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'ducks', 'index.js'))

describe('SHOW_INFO_PAGE', function () {
  it('sets the state.appState.currentView.name property to info', function () {
    var initialState = {
      appState: {
        activeAddress: 'foo',
      },
    }
    freeze(initialState)

    const action = actions.showInfoPage()
    var resultingState = reducers(initialState, action)
    assert.equal(resultingState.appState.currentView.name, 'info')
  })
})