Luccas Mateus de Medeiros Gomes eac0a22aa8 Revert "[@portaljs/components][xl] - @portaljs/ckan package"
This reverts commit 91c76c213c833e4c0833a4d7f6bf6f83f93015f8.
2023-05-23 14:45:16 -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();
});
});