1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-09-24 01:58:47 +02:00
portfolio/src/components/Vcard/index.test.tsx

22 lines
625 B
TypeScript
Raw Normal View History

2023-01-29 04:58:06 +01:00
import { fireEvent, render, screen, waitFor } from '@testing-library/react'
import Vcard from '.'
describe('Vcard', () => {
beforeEach(() => {
global.URL.createObjectURL = jest.fn()
})
it('renders correctly', () => {
const { container } = render(<Vcard />)
expect(container.firstChild).toBeInTheDocument()
})
it('Button click starts download', async () => {
render(<Vcard />)
const button = await screen.findByText('Add to addressbook')
fireEvent.click(button)
await waitFor(() => global.URL.createObjectURL)
// expect(global.URL.createObjectURL).toHaveBeenCalledTimes(1)
})
})