mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-22 08:59:39 +00:00
8 lines
159 B
TypeScript
8 lines
159 B
TypeScript
import React from 'react';
|
|
import { render } from '@testing-library/react';
|
|
import App from './App';
|
|
|
|
test('renders the app', () => {
|
|
render(<App />);
|
|
});
|