Merge pull request #2200 from MatthewShao/jest-dev

Add coverage for eventLog.js and update Jest config.
This commit is contained in:
Maximilian Hils 2017-03-22 15:12:07 +01:00 committed by GitHub
commit 1e81747a2a
2 changed files with 41 additions and 1 deletions

View File

@ -8,7 +8,7 @@
},
"jest": {
"testRegex": "__tests__/.*Spec.js$",
"testPathDirs": [
"roots": [
"<rootDir>/src/js"
],
"unmockedModulePathPatterns": [

View File

@ -0,0 +1,40 @@
jest.unmock('../../ducks/eventLog')
import reduceEventLog, * as eventLogActions from '../../ducks/eventLog'
import reduceStore from '../../ducks/utils/store'
describe('event log reducer', () => {
it('should return initial state', () => {
expect(reduceEventLog(undefined, {})).toEqual({
visible: false,
filters: { debug: false, info: true, web: true, warn: true, error: true },
...reduceStore(undefined, {}),
})
})
it('should be possible to toggle filter', () => {
let state = reduceEventLog(undefined, eventLogActions.add('foo'))
expect(reduceEventLog(state, eventLogActions.toggleFilter('info'))).toEqual({
visible: false,
filters: { ...state.filters, info: false},
...reduceStore(state, {})
})
})
it('should be possible to toggle visibility', () => {
let state = reduceEventLog(undefined, {})
expect(reduceEventLog(state, eventLogActions.toggleVisibility())).toEqual({
visible: true,
filters: {...state.filters},
...reduceStore(undefined, {})
})
})
it('should be possible to add message', () => {
let state = reduceEventLog(undefined, eventLogActions.add('foo'))
expect(state.visible).toBeFalsy()
expect(state.filters).toEqual({
debug: false, info: true, web: true, warn: true, error: true
})
})
})