1
- import reduceReducers from "@internal/reduceReducers" ;
1
+ import { reduceReducers } from 'redux'
2
2
3
3
describe ( 'Utils' , ( ) => {
4
4
describe ( 'reduceReducers' , ( ) => {
5
- const incrementReducer = ( state = 0 , action : { type : " increment" } ) =>
5
+ const incrementReducer = ( state = 0 , action : { type : ' increment' } ) =>
6
6
action . type === 'increment' ? state + 1 : state
7
- const decrementReducer = ( state = 0 , action : { type : " decrement" } ) =>
7
+ const decrementReducer = ( state = 0 , action : { type : ' decrement' } ) =>
8
8
action . type === 'decrement' ? state - 1 : state
9
9
10
- it ( " runs multiple reducers in sequence and returns the result of the last one" , ( ) => {
10
+ it ( ' runs multiple reducers in sequence and returns the result of the last one' , ( ) => {
11
11
const combined = reduceReducers ( incrementReducer , decrementReducer )
12
12
expect ( combined ( 0 , { type : 'increment' } ) ) . toBe ( 1 )
13
13
expect ( combined ( 1 , { type : 'decrement' } ) ) . toBe ( 0 )
14
14
} )
15
- it ( " accepts an initial state argument" , ( ) => {
15
+ it ( ' accepts an initial state argument' , ( ) => {
16
16
const combined = reduceReducers ( 2 , incrementReducer , decrementReducer )
17
- expect ( combined ( undefined , { type : " increment" } ) ) . toBe ( 3 )
17
+ expect ( combined ( undefined , { type : ' increment' } ) ) . toBe ( 3 )
18
18
} )
19
- it ( " can accept the preloaded state of the first reducer" , ( ) => {
19
+ it ( ' can accept the preloaded state of the first reducer' , ( ) => {
20
20
const parserReducer = ( state : number | string = 0 ) =>
21
21
typeof state === 'string' ? parseInt ( state , 10 ) : state
22
22
23
23
const combined = reduceReducers ( parserReducer , incrementReducer )
24
- expect ( combined ( "1" , { type : " increment" } ) ) . toBe ( 2 )
24
+ expect ( combined ( '1' , { type : ' increment' } ) ) . toBe ( 2 )
25
25
26
- const combined2 = reduceReducers ( "1" , parserReducer , incrementReducer )
27
- expect ( combined2 ( undefined , { type : " increment" } ) ) . toBe ( 2 )
26
+ const combined2 = reduceReducers ( '1' , parserReducer , incrementReducer )
27
+ expect ( combined2 ( undefined , { type : ' increment' } ) ) . toBe ( 2 )
28
28
} )
29
- it ( " accepts undefined as initial state" , ( ) => {
29
+ it ( ' accepts undefined as initial state' , ( ) => {
30
30
const combined = reduceReducers ( undefined , incrementReducer )
31
- expect ( combined ( undefined , { type : " increment" } ) ) . toBe ( 1 )
31
+ expect ( combined ( undefined , { type : ' increment' } ) ) . toBe ( 1 )
32
32
} )
33
- } ) ;
34
- } )
33
+ } )
34
+ } )
0 commit comments