import * as React from 'react'; import { render, screen } from '@testing-library/react'; import Block from '../index'; describe('Block', () => { it('should render the Block component', async () => { const child =
Block Child
; render(); const blockNode = await screen.findByText('Block Child'); expect(blockNode).toBeInTheDocument(); }); });