Conway's Game of Life as a React web app
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. });