UNPKG

@navinc/base-react-components

Version:
11 lines (9 loc) 355 B
import React from 'react' import { render, screen } from '../tests/with-app-context.js' import Form from './sba-form.js' describe('<SBAForm />', () => { it('renders', () => { render(<Form onFormSubmit={() => {}} dispatchOpenInfoDrawer={() => {}} />) expect(screen.getByText(/Get connected to PPP funding options/i)).toBeInTheDocument() }) })