test(react): migrate to builder architecture (#26959)

This commit is contained in:
Liam DeBeasi
2023-03-17 16:21:21 -04:00
committed by GitHub
parent 162d139abe
commit e3a1d7b8c3
77 changed files with 30446 additions and 414 deletions

View File

@ -0,0 +1,8 @@
import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders without crashing', () => {
const { baseElement } = render(<App />);
expect(baseElement).toBeDefined();
});