1 import { render } from '@testing-library/react'; 2 import { test } from 'vitest'; 3 4 import App from './App'; 5 6 test('App', () => { 7 render(<App />); 8 })