Files
pn-new-crm/tests/unit/constants.test.ts
Matt 221ae5784e chore(autonomous-session): consolidate uncommitted work from prior session
Bundles the prior autonomous-session output that was sitting unstaged:

- Em-dash sweep across src/ + tests/ (en-dash/em-dash to hyphen, ~2280 instances)
- country-flag-icons rollout (CountryFlag component, replaces emoji glyphs that
  never rendered on Windows; lazy-loads the 3x2 SVG index as a single chunk
  after the per-subpath dynamic-import approach silently failed in webpack)
- Admin IA Phase 1+2: 7-domain regroup, 41 to 38 pages, /admin/berths index,
  redirects (ocr to ai, reports to dashboard, invitations to users),
  docs/admin-ia-proposal.md
- Per-template email tester (registry + endpoint + UI on Email admin page)
- Cancel-document mode picker (delete-from-Documenso vs keep-for-audit)
- Dashboard PDF report: 25 widgets, SVG charts, date-range picker, 11 resolvers
- Customize-widgets per-region sortables at xl+ (charts/rails/feed); single
  flat sortable below xl when the layout stacks; per-viewport saved orders
- Audit doc updates capturing each shipped item
- Lint fixes: react-compiler immutability in DonutChart (reduce instead of
  let-reassign), set-state-in-effect disables in CountryFlag and
  UploadForSigning preview-bytes effect, unused 'confirm' destructures in
  interest contract + reservation tabs, unescaped apostrophe in test-template
  card copy
2026-05-23 00:52:59 +02:00

95 lines
2.6 KiB
TypeScript

import { describe, it, expect } from 'vitest';
import { PIPELINE_STAGES, BERTH_STATUSES, NOTIFICATION_TYPES } from '@/lib/constants';
describe('PIPELINE_STAGES', () => {
it('has exactly 7 entries', () => {
expect(PIPELINE_STAGES).toHaveLength(7);
});
it('starts with "enquiry"', () => {
expect(PIPELINE_STAGES[0]).toBe('enquiry');
});
it('ends with "contract"', () => {
expect(PIPELINE_STAGES[PIPELINE_STAGES.length - 1]).toBe('contract');
});
it('contains all expected stages in order', () => {
expect(PIPELINE_STAGES).toEqual([
'enquiry',
'qualified',
'nurturing',
'eoi',
'reservation',
'deposit_paid',
'contract',
]);
});
it('is a readonly tuple - type-level immutability via `as const`', () => {
const arr = PIPELINE_STAGES as unknown as string[];
expect(arr).toHaveLength(7);
});
it('has no duplicate entries', () => {
const unique = new Set(PIPELINE_STAGES);
expect(unique.size).toBe(PIPELINE_STAGES.length);
});
});
describe('BERTH_STATUSES', () => {
it('has exactly 3 entries', () => {
expect(BERTH_STATUSES).toHaveLength(3);
});
it('contains "available"', () => {
expect(BERTH_STATUSES).toContain('available');
});
it('contains "under_offer"', () => {
expect(BERTH_STATUSES).toContain('under_offer');
});
it('contains "sold"', () => {
expect(BERTH_STATUSES).toContain('sold');
});
it('has no duplicate entries', () => {
const unique = new Set(BERTH_STATUSES);
expect(unique.size).toBe(BERTH_STATUSES.length);
});
});
describe('NOTIFICATION_TYPES', () => {
it('contains "interest_stage_changed"', () => {
expect(NOTIFICATION_TYPES).toContain('interest_stage_changed');
});
it('contains "mention"', () => {
expect(NOTIFICATION_TYPES).toContain('mention');
});
it('contains "email_received"', () => {
expect(NOTIFICATION_TYPES).toContain('email_received');
});
it('has no duplicate entries', () => {
const unique = new Set(NOTIFICATION_TYPES);
expect(unique.size).toBe(NOTIFICATION_TYPES.length);
});
it('contains expected notification categories (interest, document, reminder, financial, email, system)', () => {
const types = new Set(NOTIFICATION_TYPES);
// Interest
expect(types.has('interest_stage_changed')).toBe(true);
expect(types.has('interest_created')).toBe(true);
// Document
expect(types.has('document_sent')).toBe(true);
expect(types.has('document_signed')).toBe(true);
// Financial
expect(types.has('invoice_paid')).toBe(true);
// System
expect(types.has('system_alert')).toBe(true);
});
});