diff --git a/src/components/Contacts/ContactDetails/ContactDetailsHeader/DeleteContactModal/DeleteContactModal.test.tsx b/src/components/Contacts/ContactDetails/ContactDetailsHeader/DeleteContactModal/DeleteContactModal.test.tsx index b93a5b795..4837e518d 100644 --- a/src/components/Contacts/ContactDetails/ContactDetailsHeader/DeleteContactModal/DeleteContactModal.test.tsx +++ b/src/components/Contacts/ContactDetails/ContactDetailsHeader/DeleteContactModal/DeleteContactModal.test.tsx @@ -168,6 +168,28 @@ describe('DeleteContactModal', () => { getByRole('button', { name: 'delete contact' }), ).toBeInTheDocument(); }); + + it('should show third party source for contact', async () => { + const { findByText } = render( + , + ); + + expect(await findByText('Contact: GIVE_SITE')).toBeInTheDocument(); + expect( + await findByText('Address: US Donation Services'), + ).toBeInTheDocument(); + expect( + await findByText('Email: US Donation Services'), + ).toBeInTheDocument(); + expect( + await findByText('Phone: US Donation Services'), + ).toBeInTheDocument(); + }); }); describe('Show normal delete message', () => {