2020-01-09 04:34:58 +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: {},
|
|
|
|
}
|
|
|
|
freeze(initialState)
|
|
|
|
|
|
|
|
const warningText = 'This is a sample warning message'
|
|
|
|
|
|
|
|
const action = actions.displayWarning(warningText)
|
|
|
|
const resultingState = reducers(initialState, action)
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.equal(
|
|
|
|
resultingState.appState.warning,
|
|
|
|
warningText,
|
|
|
|
'warning text set',
|
|
|
|
)
|
2017-05-04 23:35:10 +02:00
|
|
|
})
|
|
|
|
})
|