File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -182,7 +182,9 @@ describe('Cache Manager', () => {
182182 method : 'POST' ,
183183 body : 10 ,
184184 } ) ;
185- expect ( key ) . toContain ( 'POST|https://api.example.com/data|same-origin||10' ) ;
185+ expect ( key ) . toContain (
186+ 'POST|https://api.example.com/data|same-origin||10' ,
187+ ) ;
186188 } ) ;
187189
188190 it ( 'should handle Array body' , ( ) => {
@@ -192,7 +194,9 @@ describe('Cache Manager', () => {
192194 method : 'POST' ,
193195 body : arrayBody ,
194196 } ) ;
195- expect ( key ) . toContain ( 'POST|https://api.example.com/data|same-origin||0:11:22:3' ) ;
197+ expect ( key ) . toContain (
198+ 'POST|https://api.example.com/data|same-origin||0:11:22:3' ,
199+ ) ;
196200 } ) ;
197201
198202 it ( 'should handle Object body and sort properties' , ( ) => {
@@ -203,7 +207,9 @@ describe('Cache Manager', () => {
203207 body : objectBody ,
204208 } ) ;
205209
206- expect ( key ) . toContain ( 'POST|https://api.example.com/data|same-origin||a:1b:2' ) ;
210+ expect ( key ) . toContain (
211+ 'POST|https://api.example.com/data|same-origin||a:1b:2' ,
212+ ) ;
207213 } ) ;
208214 } ) ;
209215
You can’t perform that action at this time.
0 commit comments