@@ -101,7 +101,7 @@ describe('reduxRouter()', () => {
101
101
routes
102
102
} ) ( createStore ) ( reducer ) ;
103
103
104
- store . dispatch ( pushState ( null , '/parent/child/123' , { key : 'value' } ) ) ;
104
+ store . dispatch ( pushState ( null , '/parent/child/123' , { key : 'value' } ) ) ;
105
105
expect ( store . getState ( ) . router . location . pathname )
106
106
. to . equal ( '/parent/child/123' ) ;
107
107
expect ( store . getState ( ) . router . location . query ) . to . eql ( { key : 'value' } ) ;
@@ -158,7 +158,7 @@ describe('reduxRouter()', () => {
158
158
}
159
159
} ) ( createStore ) ( reducer ) ;
160
160
161
- store . dispatch ( pushState ( null , '/parent/child/123' , { key : 'value' } ) ) ;
161
+ store . dispatch ( pushState ( null , '/parent/child/123' , { key : 'value' } ) ) ;
162
162
expect ( store . getState ( ) . router . location . pathname )
163
163
. to . equal ( '/parent/child/123' ) ;
164
164
} ) ;
@@ -188,7 +188,7 @@ describe('reduxRouter()', () => {
188
188
)
189
189
} ) ( createStore ) ( reducer ) ;
190
190
191
- store . dispatch ( pushState ( null , '/parent/child/123' , { key : 'value' } ) ) ;
191
+ store . dispatch ( pushState ( null , '/parent/child/123' , { key : 'value' } ) ) ;
192
192
expect ( store . getState ( ) . router . location . pathname )
193
193
. to . equal ( '/login' ) ;
194
194
} ) ;
0 commit comments