/**
 * Spec-side mirror of the seeded fixture credentials.
 *
 * The seed script (scripts/seed.ts) inserts these exact rows; specs import
 * from here so a credential change is a single-file edit. Do NOT add anything
 * derived from runtime DB state here — keep it static.
 */
export const PORTALS = {
  patient: 'http://localhost:4001',
  doctor: 'http://localhost:4002',
  admin: 'http://localhost:4003',
  public: 'http://localhost:4004',
} as const;

export const API_URL = 'http://localhost:4000';

export const USERS = {
  admin: {
    email: 'admin.e2e@sehatsahoolat.test',
    password: 'AdminPass1!',
    fullName: 'Asma Khan',
  },
  doctor: {
    email: 'doctor.e2e@sehatsahoolat.test',
    password: 'DoctorPass1!',
    fullName: 'Imran Rashid',
    specialty: 'cardiology',
  },
  patient: {
    email: 'patient.e2e@sehatsahoolat.test',
    password: 'PatientPass1!',
    fullName: 'Ayesha Siddiqui',
  },
} as const;
