From 4b327857c413379119f5f32d32e91c4e018f48a8 Mon Sep 17 00:00:00 2001 From: "tom.coursow" Date: Wed, 12 Jul 2023 13:48:24 +0200 Subject: [PATCH] Let test fail to test that Gitea Actions Workflow fail --- src/components/MainContent.test.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MainContent.test.jsx b/src/components/MainContent.test.jsx index 867df94..e077dc2 100644 --- a/src/components/MainContent.test.jsx +++ b/src/components/MainContent.test.jsx @@ -16,6 +16,6 @@ describe('MainContent', () => { const button = screen.getByRole('button'); await userEvent.click(button); - expect(screen.getByTestId('help-area')).toBeInTheDocument(); + expect(screen.getByTestId('help-area')).not.toBeInTheDocument(); }); });