Files
datahub/examples/simple-example/specs/index.spec.tsx
Luccas Mateus de Medeiros Gomes 751093baf6 [example][m] - start of a simple-example
2023-04-18 08:19:58 -03:00

12 lines
278 B
TypeScript

import React from 'react';
import { render } from '@testing-library/react';
import Index from '../pages/index';
describe('Index', () => {
it('should render successfully', () => {
const { baseElement } = render(<Index />);
expect(baseElement).toBeTruthy();
});
});