Skip to content
Snippets Groups Projects
App.test.tsx 266 B

import React from 'react';
import { render, screen } from '@testing-library/react';
import App from 'App';

test('app renders `Home`', () => {
    render(<App />);
    const linkElement = screen.getByText(/Home/i);
    expect(linkElement).toBeInTheDocument();
});