@@ -577,14 +577,12 @@ describe('ReactQueryDevtools', () => {
577577 initialIsOpen : true ,
578578 } )
579579
580- const filterInput : HTMLInputElement = screen . getByLabelText (
581- / F i l t e r b y q u e r y h a s h / i
582- )
580+ const filterInput : HTMLInputElement =
581+ screen . getByLabelText ( / F i l t e r b y q u e r y h a s h / i)
583582 expect ( filterInput . value ) . toEqual ( '' )
584583
585- const sortCombobox : HTMLSelectElement = screen . getByLabelText (
586- / S o r t q u e r i e s / i
587- )
584+ const sortCombobox : HTMLSelectElement =
585+ screen . getByLabelText ( / S o r t q u e r i e s / i)
588586 expect ( sortCombobox . value ) . toEqual ( Object . keys ( sortFns ) [ 0 ] )
589587
590588 expect ( screen . getByRole ( 'button' , { name : / A s c / i } ) ) . toBeInTheDocument ( )
@@ -597,7 +595,7 @@ describe('ReactQueryDevtools', () => {
597595 localStorage . setItem ( 'reactQueryDevtoolsSortDesc' , 'true' )
598596 localStorage . setItem (
599597 'reactQueryDevtoolsSortFn' ,
600- JSON . stringify ( Object . keys ( sortFns ) [ 1 ] )
598+ JSON . stringify ( Object . keys ( sortFns ) [ 1 ] ) ,
601599 )
602600
603601 const { queryClient } = createQueryClient ( )
@@ -619,9 +617,8 @@ describe('ReactQueryDevtools', () => {
619617 initialIsOpen : true ,
620618 } )
621619
622- const sortCombobox : HTMLSelectElement = screen . getByLabelText (
623- / S o r t q u e r i e s / i
624- )
620+ const sortCombobox : HTMLSelectElement =
621+ screen . getByLabelText ( / S o r t q u e r i e s / i)
625622 expect ( sortCombobox . value ) . toEqual ( Object . keys ( sortFns ) [ 1 ] )
626623
627624 expect ( screen . getByRole ( 'button' , { name : / D e s c / i } ) ) . toBeInTheDocument ( )
@@ -649,9 +646,8 @@ describe('ReactQueryDevtools', () => {
649646 initialIsOpen : true ,
650647 } )
651648
652- const filterInput : HTMLInputElement = screen . getByLabelText (
653- / F i l t e r b y q u e r y h a s h / i
654- )
649+ const filterInput : HTMLInputElement =
650+ screen . getByLabelText ( / F i l t e r b y q u e r y h a s h / i)
655651 expect ( filterInput . value ) . toEqual ( 'posts' )
656652 } )
657653
0 commit comments