mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
10 lines
239 B
TypeScript
10 lines
239 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();
|
|
});
|
|
});
|