diff --git a/src/RetrospectivesPage.test.jsx b/src/RetrospectivesPage.test.jsx index 003ab61..1fbf4e0 100644 --- a/src/RetrospectivesPage.test.jsx +++ b/src/RetrospectivesPage.test.jsx @@ -1,13 +1,17 @@ import React from 'react'; -import { render } from '@testing-library/react'; +import { render, screen } from '@testing-library/react'; import RetrospectivesPage from './RetrospectivesPage'; +const { queryByText } = screen; + describe('RetrospectivesPage', () => { it('renders retrospectives page', () => { render(( )); + + expect(queryByText('무엇을 하셨나요?')).toBeInTheDocument(); }); });