import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import '@testing-library/jest-dom';
import App from './App.tsx';

test('App', async () => {
	render(<App />);
	const header = screen.getByTestId('header');
	expect(header.textContent).toBe('React, TS, Webpack');
});
