Skip to content
This repository was archived by the owner on May 4, 2023. It is now read-only.

Commit 114f476

Browse files
committed
add tests
1 parent 5dda055 commit 114f476

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/__tests__/App.test.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import '@testing-library/jest-dom';
2+
import { render } from '@testing-library/react';
3+
import App from '../renderer/App';
4+
5+
describe('App', () => {
6+
it('should render', () => {
7+
expect(render(<App />)).toBeTruthy();
8+
});
9+
});

0 commit comments

Comments
 (0)