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

15 lines
477 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 StartButton from '../../src/components/StartButton'
describe('StartButton', () => {
it('calls handler', () => {
const fn = vi.fn()
const { getByText } = render(<StartButton onClick={fn} />)
fireEvent.click(getByText('Start'))
expect(fn).toHaveBeenCalled()
})
})