chore: test

This commit is contained in:
karishmas6
2024-07-18 23:23:31 +05:30
parent 234717b65e
commit e04d6e6330

9
src/App.test.tsx Normal file
View File

@@ -0,0 +1,9 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});