9 lines
192 B
React
9 lines
192 B
React
// frontend/src/App.test.jsx
|
|
|
|
import { render } from '@testing-library/react';
|
|
import { test } from 'vitest';
|
|
import App from './App';
|
|
|
|
test('renders the App', () => {
|
|
render(<App />);
|
|
}); |