File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ describe('Comments', () => {
87
87
screen . getByRole ( 'button' , { name : 'Submit' } ) ,
88
88
) . toBeInTheDocument ( ) ;
89
89
expect (
90
- screen . getByLabelText ( `Report comment by ${ getComment ( ) . commentByName } ` )
90
+ screen . getByLabelText ( `Report comment by ${ getComment ( ) . commentByName } ` ) ,
91
91
) . toBeInTheDocument ( ) ;
92
92
} ) ;
93
93
@@ -109,7 +109,7 @@ describe('Comments', () => {
109
109
expect ( screen . getByRole ( 'article' ) ) . toHaveTextContent ( 'Hey' ) ;
110
110
111
111
await userEvent . click (
112
- screen . getByLabelText ( `Delete comment by ${ getComment ( ) . commentByName } ` )
112
+ screen . getByLabelText ( `Delete comment by ${ getComment ( ) . commentByName } ` ) ,
113
113
) ;
114
114
115
115
await waitFor ( ( ) => expect ( screen . queryByRole ( 'article' ) ) . not . toBeInTheDocument ( ) ) ;
@@ -152,7 +152,7 @@ describe('Comments', () => {
152
152
expect ( screen . getByRole ( 'article' ) ) . toHaveTextContent ( 'Hey' ) ;
153
153
154
154
await userEvent . click (
155
- screen . getByLabelText ( `Delete comment by ${ getComment ( ) . commentByName } ` )
155
+ screen . getByLabelText ( `Delete comment by ${ getComment ( ) . commentByName } ` ) ,
156
156
) ;
157
157
158
158
await waitFor ( ( ) => expect ( screen . queryByRole ( 'article' ) ) . not . toBeInTheDocument ( ) ) ;
You can’t perform that action at this time.
0 commit comments