Conway's Game of Life as a React web app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

App.test.tsx 273B

123456789
  1. import React from 'react';
  2. import { render, screen } from '@testing-library/react';
  3. import App from './App';
  4. test('renders learn react link', () => {
  5. render(<App />);
  6. const linkElement = screen.getByText(/learn react/i);
  7. expect(linkElement).toBeInTheDocument();
  8. });