mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
37 lines
954 B
JavaScript
37 lines
954 B
JavaScript
|
var jsdom = require('mocha-jsdom')
|
||
|
var assert = require('assert')
|
||
|
var freeze = require('deep-freeze-strict')
|
||
|
var path = require('path')
|
||
|
|
||
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
||
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
||
|
|
||
|
describe('SAVE_ACCOUNT_LABEL', function() {
|
||
|
|
||
|
it('updates the state.metamask.identities[:i].name property of the state to the action.value.label', function() {
|
||
|
var initialState = {
|
||
|
metamask: {
|
||
|
identities: {
|
||
|
foo: {
|
||
|
name: 'bar'
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
freeze(initialState)
|
||
|
|
||
|
const action = {
|
||
|
type: actions.SAVE_ACCOUNT_LABEL,
|
||
|
value: {
|
||
|
account: 'foo',
|
||
|
label: 'baz'
|
||
|
},
|
||
|
}
|
||
|
freeze(action)
|
||
|
|
||
|
var resultingState = reducers(initialState, action)
|
||
|
assert.equal(resultingState.metamask.identities.foo.name, action.value.label)
|
||
|
});
|
||
|
});
|
||
|
|