aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/App.test.tsx
blob: f1572a7fdd81d3086c16951d5965c26ef2dada4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { render, screen } from '@testing-library/react';
import App from './App';
import { describe, it, expect } from 'vitest';

describe('App', () => {
    it('renders heading', () => {
        render(<App />);
        expect(screen.getByRole('heading', { level: 1 })).toBeInTheDocument(); // Adjust based on actual App content
    });
});