-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmerge-reducers.test.js
52 lines (43 loc) · 1.58 KB
/
merge-reducers.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* global describe it */
import { expect } from 'chai';
import mergeReducers from '../src/merge-reducers';
describe('mergeReducers', () => {
it('should be a function', () => {
expect(mergeReducers).to.be.a('function');
});
describe('when called with nothing', () => {
it('should return function', () => {
expect(mergeReducers()).to.be.a('function');
});
});
describe('when called with one reducer', () => {
it('should return reducer function', () => {
const reducer = () => 'hello from reducer';
const mergedReducers = mergeReducers(reducer);
expect(mergedReducers()).to.equal('hello from reducer');
});
it('should return reducer that can apply action', () => {
const reducer = (state, action) => {
if (action.type === 'test') {
return 'new state';
}
return state;
};
const initialState = 'old state';
const action = { type: 'test' };
const mergedReducers = mergeReducers(reducer);
const newState = mergedReducers(initialState, action);
expect(newState).to.equal('new state');
});
});
describe('when called with two reducers', () => {
it('should apply action to both reducers', () => {
const reducer = state => ({ ...state, a: state.a + 1 });
const reducer2 = state => ({ ...state, b: state.b + ' world!'});
const initialState = { a: 0, b: 'Hello' };
const mergedReducers = mergeReducers(reducer, reducer2);
const newState = mergedReducers(initialState);
expect(newState).to.deep.equal({a: 1, b: 'Hello world!'});
});
});
});