import { render } from '@testing-library/react';
import { describe, test, expect } from 'vitest';
const App = () =>
learn react
describe('Application', function () {
test('renders learn react link', () => {
const { getByText } = render();
const linkElement = getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});
});