A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/test/unit/actions/view_info_test.js

20 lines
583 B

import assert from 'assert'
import freeze from 'deep-freeze-strict'
import * as actions from '../../../ui/app/store/actions'
import reducers from '../../../ui/app/ducks'
8 years ago
describe('SHOW_INFO_PAGE', function () {
it('sets the state.appState.currentView.name property to info', function () {
const initialState = {
appState: {
activeAddress: 'foo',
8 years ago
},
}
freeze(initialState)
const action = actions.showInfoPage()
const resultingState = reducers(initialState, action)
assert.equal(resultingState.appState.currentView.name, 'info')
8 years ago
})
})