mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 13:47:06 +01:00
04064d5d19
* eslint: Enable no-var rule * yarn lint --fix
23 lines
758 B
JavaScript
23 lines
758 B
JavaScript
// var jsdom = require('mocha-jsdom')
|
|
const assert = require('assert')
|
|
const freeze = require('deep-freeze-strict')
|
|
const path = require('path')
|
|
|
|
const actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'store', 'actions.js'))
|
|
const 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 () {
|
|
const initialState = {
|
|
appState: {
|
|
activeAddress: 'foo',
|
|
},
|
|
}
|
|
freeze(initialState)
|
|
|
|
const action = actions.showInfoPage()
|
|
const resultingState = reducers(initialState, action)
|
|
assert.equal(resultingState.appState.currentView.name, 'info')
|
|
})
|
|
})
|