mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
|
|
import '@testing-library/jest-dom';
|
||
|
|
import { render } from '@testing-library/react';
|
||
|
|
import { App } from '../renderer/app';
|
||
|
|
|
||
|
|
describe('App', () => {
|
||
|
|
it('should render', () => {
|
||
|
|
expect(render(<App />)).toBeTruthy();
|
||
|
|
});
|
||
|
|
});
|