9 lines
239 B
TypeScript
9 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();
|
|
});
|
|
});
|