UNPKG

@navinc/base-react-components

Version:
13 lines (10 loc) 450 B
import { screen, render, fireEvent } from '@testing-library/react' import { AdvertiserDisclosure } from './advertiser-disclosure.js' describe('handleDetailsClick', () => { it('calls openInfoDrawer and track', () => { const openInfoDrawer = jest.fn() render(<AdvertiserDisclosure openInfoDrawer={openInfoDrawer} />) fireEvent.click(screen.getByText('Advertiser & Editorial Disclosure')) expect(openInfoDrawer).toBeCalled() }) })