mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-13 13:17:13 +01:00
3ba91df387
* Unifies the filename suffix to .test.js * Display @babel/no-invalid-this rule for tx-controller.test.js * Add test file extension to test:unit:global
25 lines
662 B
JavaScript
25 lines
662 B
JavaScript
import assert from 'assert';
|
|
import freeze from 'deep-freeze-strict';
|
|
import reducers from '../../../ui/app/ducks';
|
|
import * as actionConstants from '../../../ui/app/store/actionConstants';
|
|
|
|
describe('SHOW_ACCOUNT_DETAIL', function () {
|
|
it('updates metamask state', function () {
|
|
const initialState = {
|
|
metamask: {
|
|
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);
|
|
});
|
|
});
|