File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -69,4 +69,29 @@ describe('createRedux', () => {
69
69
70
70
expect ( state ) . toEqual ( redux . getState ( ) . todoStore ) ;
71
71
} ) ;
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
+ } ) ;
72
97
} ) ;
You can’t perform that action at this time.
0 commit comments