fal-js/apps/demo-app/specs/index.spec.tsx
Daniel Rochetti 5c4cdee6a5
chore(client): add some client unit tests (#5)
* chore(client): add config unit tests
* chore(client): add runtime utilities tests
2023-03-31 15:28:03 -03:00

12 lines
279 B
TypeScript

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