sandbox/empty-ionic-react/src/App.test.tsx

9 lines
227 B
TypeScript
Raw Normal View History

2022-09-07 09:47:05 +00:00
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();
});