Skip to content

Commit 2bdc126

Browse files
camillofjulianguyen
authored andcommitted
Fix eslint errors
1 parent 890bc77 commit 2bdc126

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/app/widgets/Comments/__tests__/Comments.spec.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ describe('Comments', () => {
8787
screen.getByRole('button', { name: 'Submit' }),
8888
).toBeInTheDocument();
8989
expect(
90-
screen.getByLabelText(`Report comment by ${getComment().commentByName}`)
90+
screen.getByLabelText(`Report comment by ${getComment().commentByName}`),
9191
).toBeInTheDocument();
9292
});
9393

@@ -109,7 +109,7 @@ describe('Comments', () => {
109109
expect(screen.getByRole('article')).toHaveTextContent('Hey');
110110

111111
await userEvent.click(
112-
screen.getByLabelText(`Delete comment by ${getComment().commentByName}`)
112+
screen.getByLabelText(`Delete comment by ${getComment().commentByName}`),
113113
);
114114

115115
await waitFor(() => expect(screen.queryByRole('article')).not.toBeInTheDocument());
@@ -152,7 +152,7 @@ describe('Comments', () => {
152152
expect(screen.getByRole('article')).toHaveTextContent('Hey');
153153

154154
await userEvent.click(
155-
screen.getByLabelText(`Delete comment by ${getComment().commentByName}`)
155+
screen.getByLabelText(`Delete comment by ${getComment().commentByName}`),
156156
);
157157

158158
await waitFor(() => expect(screen.queryByRole('article')).not.toBeInTheDocument());

0 commit comments

Comments
 (0)