mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import '@testing-library/jest-dom';
|
|
import { render } from '@testing-library/react';
|
|
import App from '../renderer/windows/App';
|
|
|
|
describe('App', () => {
|
|
it('should render', () => {
|
|
expect(render(<App />)).toBeTruthy();
|
|
});
|
|
});
|