From 3338f2549e70ef57a3b6413769abee8c77022976 Mon Sep 17 00:00:00 2001 From: "tom.coursow" Date: Wed, 12 Jul 2023 13:53:41 +0200 Subject: [PATCH] Reverted test so that Actions Workflow passes again --- 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 e077dc2..867df94 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')).not.toBeInTheDocument(); + expect(screen.getByTestId('help-area')).toBeInTheDocument(); }); });