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
33 lines
826 B
JavaScript
33 lines
826 B
JavaScript
import assert from 'assert'
|
|
import freeze from 'deep-freeze-strict'
|
|
import reducers from '../../../ui/app/ducks'
|
|
import { actionConstants } from '../../../ui/app/store/actions'
|
|
|
|
describe('SET_ACCOUNT_LABEL', function () {
|
|
it('updates the state.metamask.identities[:i].name property of the state to the action.value.label', function () {
|
|
const initialState = {
|
|
metamask: {
|
|
identities: {
|
|
foo: {
|
|
name: 'bar',
|
|
},
|
|
},
|
|
},
|
|
}
|
|
freeze(initialState)
|
|
|
|
const action = {
|
|
type: actionConstants.SET_ACCOUNT_LABEL,
|
|
value: {
|
|
account: 'foo',
|
|
label: 'baz',
|
|
},
|
|
}
|
|
freeze(action)
|
|
|
|
const resultingState = reducers(initialState, action)
|
|
assert.equal(resultingState.metamask.identities.foo.name, action.value.label)
|
|
})
|
|
})
|
|
|