[web] Add tests for js/__tests__/ducks/ui/indexSpec.js
This commit is contained in:
parent
21cdfe835b
commit
f327a52029
|
@ -0,0 +1,9 @@
|
|||
import reduceUI from '../../../ducks/ui/index'
|
||||
|
||||
describe('reduceUI in js/ducks/ui/index.js', () => {
|
||||
it('should combine flow and header', () => {
|
||||
let state = reduceUI(undefined, {})
|
||||
expect(state.hasOwnProperty('flow')).toBeTruthy()
|
||||
expect(state.hasOwnProperty('header')).toBeTruthy()
|
||||
})
|
||||
})
|
Loading…
Reference in New Issue