13 lines
292 B
TypeScript
13 lines
292 B
TypeScript
import '@inrupt/jest-jsdom-polyfills';
|
|
|
|
import { render } from '@testing-library/react';
|
|
|
|
import Index from '../pages/index';
|
|
|
|
describe('Index', () => {
|
|
xit('should render successfully', () => {
|
|
const { baseElement } = render(<Index />);
|
|
expect(baseElement).toBeTruthy();
|
|
});
|
|
});
|