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/CancelButton.test.tsx

15 lines
510 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 CancelButton from '../../src/components/CancelButton'
describe('CancelButton', () => {
it('calls onClick when clicked', () => {
const onClick = vi.fn()
const { getByText } = render(<CancelButton onClick={onClick} />)
fireEvent.click(getByText('Cancel'))
expect(onClick).toHaveBeenCalled()
})
})