2021-02-04 19:15:23 +01:00
|
|
|
import assert from 'assert';
|
|
|
|
import freeze from 'deep-freeze-strict';
|
|
|
|
import * as actions from '../../../ui/app/store/actions';
|
|
|
|
import reducers from '../../../ui/app/ducks';
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2017-05-04 23:35:10 +02:00
|
|
|
describe('action DISPLAY_WARNING', function () {
|
|
|
|
it('sets appState.warning to provided value', function () {
|
2019-12-03 15:52:01 +01:00
|
|
|
const initialState = {
|
2016-04-14 00:28:44 +02:00
|
|
|
appState: {},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
|
|
|
freeze(initialState);
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const warningText = 'This is a sample warning message';
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const action = actions.displayWarning(warningText);
|
|
|
|
const resultingState = reducers(initialState, action);
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.equal(
|
|
|
|
resultingState.appState.warning,
|
|
|
|
warningText,
|
|
|
|
'warning text set',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|