You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
773 B
24 lines
773 B
var jsdom = require('mocha-jsdom')
|
|
var assert = require('assert')
|
|
var freeze = require('deep-freeze-strict')
|
|
var path = require('path')
|
|
|
|
var actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'actions.js'))
|
|
var reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'reducers.js'))
|
|
|
|
describe('action DISPLAY_WARNING', function() {
|
|
|
|
it('sets appState.warning to provided value', function() {
|
|
var 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')
|
|
});
|
|
});
|
|
|