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(); }); });