Files
goodgo-platform/apps/web/components/comparison/__tests__/add-to-compare-button.spec.tsx
Ho Ngoc Hai 154aed5440 fix: resolve all ESLint errors and TypeScript compilation errors
- Auto-fixed 712 import ordering errors via `pnpm lint --fix`
- Manually fixed 13 remaining ESLint errors:
  - Prefixed unused vars with _ (mockAdminUser, params)
  - Removed unused imports (UnauthorizedException, vi, screen)
  - Moved imports above vi.mock() calls to fix import group ordering
  - Removed eslint-disable for non-existent rules
  - Fixed empty object pattern in Playwright fixture
- Fixed ~40 TypeScript TS4111 index signature errors in test files:
  - Used bracket notation for Record<string, unknown> property access
  - Added missing PropertyMedia fields (id, order, caption) to test data
- Fixed pre-existing test failures in rate-limit guard specs:
  - Added NODE_ENV override to bypass test-mode skip in guard

Both `pnpm lint` and `pnpm typecheck` now exit 0 cleanly.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-11 23:12:08 +07:00

57 lines
2.0 KiB
TypeScript

import { render, screen } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
import { describe, expect, it, vi } from 'vitest';
import { AddToCompareButton } from '../add-to-compare-button';
// Mock next-intl
vi.mock('next-intl', () => ({
useTranslations: () => (key: string) => key,
}));
// Mock comparison store
vi.mock('@/lib/comparison-store', () => {
let selectedIds: string[] = [];
return {
useComparisonStore: (selector: (state: unknown) => unknown) => {
const state = {
isSelected: (id: string) => selectedIds.includes(id),
addToCompare: vi.fn((id: string) => { selectedIds.push(id); }),
removeFromCompare: vi.fn((id: string) => { selectedIds = selectedIds.filter((i) => i !== id); }),
canAdd: () => selectedIds.length < 5,
};
return selector(state);
},
};
});
describe('AddToCompareButton', () => {
it('renders add button in full mode', () => {
render(<AddToCompareButton listingId="listing-1" />);
expect(screen.getByRole('button', { name: 'addToCompare' })).toBeInTheDocument();
});
it('renders compact button with aria-label', () => {
render(<AddToCompareButton listingId="listing-1" compact />);
expect(screen.getByRole('button', { name: 'addToCompare' })).toBeInTheDocument();
});
it('shows add text in full mode', () => {
render(<AddToCompareButton listingId="listing-1" />);
expect(screen.getByText('addToCompare')).toBeInTheDocument();
});
it('handles click on compact button', async () => {
render(<AddToCompareButton listingId="listing-2" compact />);
const btn = screen.getByRole('button');
await userEvent.click(btn);
// Should not throw - click handler stops propagation
});
it('handles click on full button', async () => {
render(<AddToCompareButton listingId="listing-3" />);
const btn = screen.getByRole('button', { name: 'addToCompare' });
await userEvent.click(btn);
// Should not throw
});
});