2022-02-11 13:56:28 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { render } from '@testing-library/react';
|
|
|
|
|
2022-03-01 00:59:18 +00:00
|
|
|
import Index from '../pages/index.page';
|
2022-02-11 13:56:28 +00:00
|
|
|
|
|
|
|
describe('Index', () => {
|
|
|
|
it('should render successfully', () => {
|
|
|
|
const { baseElement } = render(<Index />);
|
|
|
|
expect(baseElement).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|