No Description

App.test.tsx 227B

12345678
  1. import React from 'react';
  2. import { render } from '@testing-library/react';
  3. import App from './App';
  4. test('renders without crashing', () => {
  5. const { baseElement } = render(<App />);
  6. expect(baseElement).toBeDefined();
  7. });