@@ -187,6 +187,8 @@ describe('react-query', () => {
187187 'content-type' : 'application/json' ,
188188 'x-test' : 'test' ,
189189 } ,
190+ route : router . health ,
191+ signal : expect . any ( AbortSignal ) ,
190192 } ) ;
191193
192194 await waitFor ( ( ) => {
@@ -226,6 +228,8 @@ describe('react-query', () => {
226228 'content-type' : 'application/json' ,
227229 'x-test' : 'test' ,
228230 } ,
231+ route : router . posts . getPost ,
232+ signal : expect . any ( AbortSignal ) ,
229233 } ) ;
230234 } ) ;
231235
@@ -262,6 +266,8 @@ describe('react-query', () => {
262266 'content-type' : 'application/xml' ,
263267 'x-test' : 'foo' ,
264268 } ,
269+ route : router . posts . getPost ,
270+ signal : expect . any ( AbortSignal ) ,
265271 } ) ;
266272 } ) ;
267273
@@ -295,6 +301,8 @@ describe('react-query', () => {
295301 'content-type' : 'application/json' ,
296302 'x-test' : 'test' ,
297303 } ,
304+ route : router . posts . getPost ,
305+ signal : expect . any ( AbortSignal ) ,
298306 } ) ;
299307 } ) ;
300308
@@ -320,6 +328,8 @@ describe('react-query', () => {
320328 'content-type' : 'application/json' ,
321329 'x-test' : 'test' ,
322330 } ,
331+ route : router . health ,
332+ signal : expect . any ( AbortSignal ) ,
323333 } ) ;
324334
325335 return waitFor ( ( ) => {
@@ -351,6 +361,8 @@ describe('react-query', () => {
351361 'content-type' : 'application/json' ,
352362 'x-test' : 'test' ,
353363 } ,
364+ route : router . health ,
365+ signal : expect . any ( AbortSignal ) ,
354366 } ) ;
355367
356368 await waitFor ( ( ) => {
@@ -406,6 +418,8 @@ describe('react-query', () => {
406418 title : 'test' ,
407419 } ,
408420 contentType : 'application/json' ,
421+ route : router . posts . createPost ,
422+ signal : undefined ,
409423 } ) ;
410424
411425 await waitFor ( ( ) => {
@@ -457,6 +471,8 @@ describe('react-query', () => {
457471 'content-type' : 'application/json' ,
458472 'x-test' : 'test' ,
459473 } ,
474+ route : router . posts . getPost ,
475+ signal : expect . any ( AbortSignal ) ,
460476 } ) ;
461477
462478 expect ( api ) . toHaveBeenCalledWith ( {
@@ -467,6 +483,8 @@ describe('react-query', () => {
467483 'content-type' : 'application/json' ,
468484 'x-test' : 'test' ,
469485 } ,
486+ route : router . posts . getPost ,
487+ signal : expect . any ( AbortSignal ) ,
470488 } ) ;
471489
472490 await waitFor ( ( ) => {
@@ -526,6 +544,8 @@ describe('react-query', () => {
526544 'content-type' : 'application/json' ,
527545 'x-test' : 'test' ,
528546 } ,
547+ route : router . posts . getPost ,
548+ signal : expect . any ( AbortSignal ) ,
529549 } ) ;
530550
531551 expect ( api ) . toHaveBeenCalledWith ( {
@@ -536,6 +556,8 @@ describe('react-query', () => {
536556 'content-type' : 'application/json' ,
537557 'x-test' : 'test' ,
538558 } ,
559+ route : router . posts . getPost ,
560+ signal : expect . any ( AbortSignal ) ,
539561 } ) ;
540562
541563 await waitFor ( ( ) => {
@@ -599,6 +621,8 @@ describe('react-query', () => {
599621 'content-type' : 'application/json' ,
600622 'x-test' : 'test' ,
601623 } ,
624+ route : router . posts . getPost ,
625+ signal : expect . any ( AbortSignal ) ,
602626 } ) ;
603627
604628 expect ( api ) . toHaveBeenCalledWith ( {
@@ -609,6 +633,8 @@ describe('react-query', () => {
609633 'content-type' : 'application/json' ,
610634 'x-test' : 'test' ,
611635 } ,
636+ route : router . posts . getPost ,
637+ signal : expect . any ( AbortSignal ) ,
612638 } ) ;
613639
614640 await waitFor ( ( ) => {
@@ -650,6 +676,8 @@ describe('react-query', () => {
650676 'content-type' : 'application/json' ,
651677 'x-test' : 'test' ,
652678 } ,
679+ route : router . posts . getPost ,
680+ signal : expect . any ( AbortSignal ) ,
653681 } ) ;
654682 } ) ;
655683
@@ -678,6 +706,8 @@ describe('react-query', () => {
678706 'content-type' : 'application/json' ,
679707 'x-test' : 'test' ,
680708 } ,
709+ route : router . posts . getPost ,
710+ signal : expect . any ( AbortSignal ) ,
681711 } ) ;
682712 } ) ;
683713
@@ -712,6 +742,8 @@ describe('react-query', () => {
712742 'content-type' : 'application/json' ,
713743 'x-test' : 'test' ,
714744 } ,
745+ route : router . posts . getPost ,
746+ signal : expect . any ( AbortSignal ) ,
715747 } ) ;
716748 } ) ;
717749
@@ -740,6 +772,8 @@ describe('react-query', () => {
740772 'content-type' : 'application/json' ,
741773 'x-test' : 'test' ,
742774 } ,
775+ route : router . posts . getPost ,
776+ signal : expect . any ( AbortSignal ) ,
743777 } ) ;
744778 } ) ;
745779
@@ -785,6 +819,8 @@ describe('react-query', () => {
785819 'content-type' : 'application/json' ,
786820 'x-test' : 'test' ,
787821 } ,
822+ route : router . posts . getPost ,
823+ signal : expect . any ( AbortSignal ) ,
788824 } ) ;
789825 } ) ;
790826
0 commit comments