BizInsights-Frontend / src /App.test.tsx
pranav8tripathi@gmail.com
init
222ab06
raw
history blame contribute delete
273 Bytes
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();
});