diff options
Diffstat (limited to 'src/components/organisms/comment/pending-comment/pending-comment.test.tsx')
| -rw-r--r-- | src/components/organisms/comment/pending-comment/pending-comment.test.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/components/organisms/comment/pending-comment/pending-comment.test.tsx b/src/components/organisms/comment/pending-comment/pending-comment.test.tsx new file mode 100644 index 0000000..87914c3 --- /dev/null +++ b/src/components/organisms/comment/pending-comment/pending-comment.test.tsx @@ -0,0 +1,13 @@ +import { describe, expect, it } from '@jest/globals'; +import { render, screen as rtlScreen } from '../../../../../tests/utils'; +import { PendingComment } from './pending-comment'; + +describe('PendingComment', () => { + it('renders a text to inform user', () => { + render(<PendingComment />); + + expect( + rtlScreen.getByText('This comment is awaiting moderation…') + ).toBeInTheDocument(); + }); +}); |
