@@ -98,8 +98,8 @@ describe('app selectors unit tests', () => {
98
98
} ;
99
99
100
100
[
101
- [ [ null , truthy . blockValue , true ] as [ any , any , any ] , true ] as const ,
102
- [ [ null , null , true ] as [ any , any , any ] , false ] as const ,
101
+ [ [ null , truthy . blockValue , true , false ] as [ any , any , any , any ] , true ] as const ,
102
+ [ [ null , null , true , false ] as [ any , any , any , any ] , false ] as const ,
103
103
] . map ( ( [ args , expected ] ) => expect ( cb ( ...args ) ) . toEqual ( expected ) ) ;
104
104
} ) ;
105
105
} ) ;
@@ -112,9 +112,9 @@ describe('app selectors unit tests', () => {
112
112
} ;
113
113
114
114
[
115
- [ [ null , truthy . blockValue , false ] as [ any , any , any ] , false ] as const ,
116
- [ [ truthy . unitUrl , null , false ] as [ any , any , any ] , false ] as const ,
117
- [ [ truthy . unitUrl , truthy . blockValue , false ] as [ any , any , any ] , true ] as const ,
115
+ [ [ null , truthy . blockValue , false , false ] as [ any , any , any , any ] , false ] as const ,
116
+ [ [ truthy . unitUrl , null , false , false ] as [ any , any , any , any ] , false ] as const ,
117
+ [ [ truthy . unitUrl , truthy . blockValue , false , false ] as [ any , any , any , any ] , true ] as const ,
118
118
] . map ( ( [ args , expected ] ) => expect ( cb ( ...args ) ) . toEqual ( expected ) ) ;
119
119
} ) ;
120
120
} ) ;
0 commit comments