2017-05-04 23:35:10 +02:00
|
|
|
// var jsdom = require('mocha-jsdom')
|
2019-12-03 15:52:01 +01:00
|
|
|
const assert = require('assert')
|
|
|
|
const freeze = require('deep-freeze-strict')
|
|
|
|
const path = require('path')
|
2016-04-14 00:28:44 +02:00
|
|
|
|
2019-12-03 15:52:01 +01:00
|
|
|
const actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'store', 'actions.js'))
|
|
|
|
const reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'ducks', 'index.js'))
|
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)
|
|
|
|
|
|
|
|
assert.equal(resultingState.appState.warning, warningText, 'warning text set')
|
2017-05-04 23:35:10 +02:00
|
|
|
})
|
|
|
|
})
|