Files
2026-06-02 01:13:22 +03:00

10 lines
299 B
TypeScript

import { expect, test } from '@rstest/core';
import { render, screen } from '@testing-library/react';
import App from '../src/App';
test('renders the main page', () => {
const testMessage = 'Rsbuild with React';
render(<App />);
expect(screen.getByText(testMessage)).toBeInTheDocument();
});