* [example][m] - start of a simple-example * Empty-Commit * [simple-example][sm] - change from repos.json to datasets.json * [example][m] - changed styling and added octokit * [build][sm] - fix build
12 lines
278 B
TypeScript
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();
|
|
});
|
|
});
|