it('uses correct src', async () => { const { getByAltText } = await render(<MyComponent />); const image = getByAltText('the_alt_text'); expect(image.src).toContain('the_url'); });