1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-26 05:13:37 +02:00
metamask-extension/test/unit/actions/set_selected_account_test.js

25 lines
641 B
JavaScript
Raw Normal View History

import assert from 'assert'
import freeze from 'deep-freeze-strict'
import reducers from '../../../ui/app/ducks'
import { actionConstants } from '../../../ui/app/store/actions'
2017-05-04 23:35:10 +02:00
describe('SHOW_ACCOUNT_DETAIL', function () {
it('updates metamask state', function () {
const initialState = {
metamask: {
2017-05-04 23:35:10 +02:00
selectedAddress: 'foo',
},
}
freeze(initialState)
const action = {
type: actionConstants.SHOW_ACCOUNT_DETAIL,
value: 'bar',
}
freeze(action)
const resultingState = reducers(initialState, action)
assert.equal(resultingState.metamask.selectedAddress, action.value)
})
})