mirror of
https://github.com/penpot/penpot.git
synced 2026-05-05 08:08:27 +00:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import { render } from '@testing-library/react';
|
|
|
|
import Example from './Example';
|
|
|
|
describe('Example', () => {
|
|
it('should render successfully', () => {
|
|
const { baseElement } = render(<Example />);
|
|
expect(baseElement).toBeTruthy();
|
|
});
|
|
});
|