mirror of
https://github.com/penpot/penpot.git
synced 2026-09-23 20:36:15 +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();
|
|
});
|
|
});
|