1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 21:00:23 +02:00
metamask-extension/test/unit/actions/warning_test.js
2020-11-02 17:41:28 -06:00

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',
)
})
})