aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/__tests__/ducks/ui/indexSpec.js
blob: 3c136bfff5fc9f2064e9a47edfd0ca7158f91a8a (plain)
1
2
3
4
5
6
7
8
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()
    })
})