mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-23 07:55:07 +00:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
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();
|
|
});
|