import React from 'react'; import { render } from '@testing-library/react'; import LoadingSection from './LoadingSection'; describe('', () => { it('renders the component as expected', () => { const { getByText } = render( Primary Text Secondary Text , ); expect(getByText(/primary text/i)).toBeInTheDocument(); expect(getByText(/secondary text/i)).toBeInTheDocument(); }); });