1 | import { render, screen } from '@testing-library/react' |
||
2 | |||
3 | import { App } from 'app/App' |
||
4 | |||
5 | describe('App', () => { |
||
6 | test('renders App component', () => { |
||
7 | render(<App />) |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
8 | |||
9 | screen.debug() |
||
10 | }) |
||
11 | }) |
||
12 |