nx/nx-dev/ui-home/src/lib/getting-started.spec.tsx
2021-11-12 11:59:45 -05:00

12 lines
393 B
TypeScript

import { render } from '@testing-library/react';
import { mockAllIsIntersecting } from 'react-intersection-observer/test-utils';
import GettingStarted from './getting-started';
describe('GettingStarted', () => {
it('should render successfully', () => {
mockAllIsIntersecting(true);
const { baseElement } = render(<GettingStarted />);
expect(baseElement).toBeTruthy();
});
});