You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
filepizza/tests/unit/DownloadButton.test.tsx

15 lines
492 B
TypeScript

/// <reference types="@testing-library/jest-dom" />
import React from 'react'
import { render, fireEvent } from '@testing-library/react'
import { describe, it, expect, vi } from 'vitest'
import DownloadButton from '../../src/components/DownloadButton'
describe('DownloadButton', () => {
it('calls onClick', () => {
const fn = vi.fn()
const { getByText } = render(<DownloadButton onClick={fn} />)
fireEvent.click(getByText('Download'))
expect(fn).toHaveBeenCalled()
})
})