import { render, screen } from '@testing-library/react';
import { <%= componentName %> } from '.';

describe('<%= componentName %>', () => {
  it('render', async () => {
    render(<<%= componentName %>>foobar</<%= componentName %>>);
    await screen.findByText('foobar');
  });
});
