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