@navinc/base-react-components
Version:
Nav's Pattern Library
13 lines (11 loc) • 452 B
JavaScript
import { renderWithContext } from './tests/with-app-context.js'
import { screen } from '@testing-library/react'
import { CARESActSBAForgivenessFAQ } from './sba-forgiveness-faq.js'
describe('<CARESActSBAForgivenessFAQ />', () => {
it('renders', () => {
renderWithContext(<CARESActSBAForgivenessFAQ />)
expect(
screen.getByText(/PPP Loan Forgiveness for the Self-Employed Frequently Asked Questions/i)
).toBeInTheDocument()
})
})