mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
20 lines
583 B
JavaScript
20 lines
583 B
JavaScript
import assert from 'assert'
|
|
import freeze from 'deep-freeze-strict'
|
|
import * as actions from '../../../ui/app/store/actions'
|
|
import reducers from '../../../ui/app/ducks'
|
|
|
|
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')
|
|
})
|
|
})
|