mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +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
663 B
JavaScript
25 lines
663 B
JavaScript
import assert from 'assert';
|
|
import freeze from 'deep-freeze-strict';
|
|
import * as actions from '../../../ui/app/store/actions';
|
|
import reducers from '../../../ui/app/ducks';
|
|
|
|
describe('action DISPLAY_WARNING', function () {
|
|
it('sets appState.warning to provided value', function () {
|
|
const initialState = {
|
|
appState: {},
|
|
};
|
|
freeze(initialState);
|
|
|
|
const warningText = 'This is a sample warning message';
|
|
|
|
const action = actions.displayWarning(warningText);
|
|
const resultingState = reducers(initialState, action);
|
|
|
|
assert.equal(
|
|
resultingState.appState.warning,
|
|
warningText,
|
|
'warning text set',
|
|
);
|
|
});
|
|
});
|