mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
25 lines
651 B
JavaScript
25 lines
651 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',
|
|
)
|
|
})
|
|
})
|