import { render, screen } from '@testing-library/react'; import { type Mock, describe, expect, it, vi } from 'vitest'; import { useGetTransactionStatusLabel } from '../hooks/useGetTransactionStatusLabel'; import { TransactionStatusLabel } from './TransactionStatusLabel'; vi.mock('../hooks/useGetTransactionStatusLabel', () => ({ useGetTransactionStatusLabel: vi.fn(), })); describe('TransactionStatusLabel', () => { it('renders transaction status label', () => { (useGetTransactionStatusLabel as Mock).mockReturnValue({ label: 'Successful!', labelClassName: 'text-ock-foreground-muted', }); render(); const label = screen.getByText('Successful!'); expect(label).toBeInTheDocument(); expect(label).toHaveClass('text-ock-foreground-muted'); }); });