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.
|
|
|
const assert = require('assert')
|
|
|
|
const freeze = require('deep-freeze-strict')
|
|
|
|
const path = require('path')
|
|
|
|
|
|
|
|
const actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'store', 'actions.js'))
|
|
|
|
const reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'ducks', 'index.js'))
|
|
|
|
|
|
|
|
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: actions.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)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|