Skip to content

Commit b71a7fc

Browse files
committed
Add test from #110 to show that it passes
1 parent 1babcaa commit b71a7fc

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

test/createRedux.spec.js

+25
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,29 @@ describe('createRedux', () => {
6969

7070
expect(state).toEqual(redux.getState().todoStore);
7171
});
72+
73+
it('should handle nested dispatches gracefully', () => {
74+
function foo(state = 0, action) {
75+
return action.type === 'foo' ? 1 : state;
76+
}
77+
78+
function bar(state = 0, action) {
79+
return action.type === 'bar' ? 2 : state;
80+
}
81+
82+
redux = createRedux({ foo, bar });
83+
84+
redux.subscribe(() => {
85+
// What the Connector ends up doing.
86+
const state = redux.getState();
87+
if (state.bar === 0) {
88+
redux.dispatch({type: 'bar'});
89+
}
90+
});
91+
92+
redux.dispatch({type: 'foo'});
93+
94+
// Either this or throw an error when nesting dispatchers
95+
expect(redux.getState()).toEqual({foo: 1, bar: 2});
96+
});
7297
});

0 commit comments

Comments
 (0)