A Metamask fork with Infura removed and default networks editable
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.
ciphermask/test/unit/actions/warning_test.js

24 lines
801 B

8 years ago
// var jsdom = require('mocha-jsdom')
const assert = require('assert')
const freeze = require('deep-freeze-strict')
const path = require('path')
const actions = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'store', 'actions.js'))
const reducers = require(path.join(__dirname, '..', '..', '..', 'ui', 'app', 'ducks', 'index.js'))
8 years ago
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')
8 years ago
})
})