From e1068bc0e45c1c87d15b36dca3f5f1e6ee40935b Mon Sep 17 00:00:00 2001 From: agarciamears Date: Mon, 2 Dec 2024 16:31:33 -0600 Subject: [PATCH] Test Fail Actions --- 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(); }); });