many fixes resulting from latest refactoring
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 8m6s

This commit is contained in:
2025-12-09 04:04:02 -08:00
parent c5d2e4f23e
commit 264404d6e8
13 changed files with 105 additions and 48 deletions

View File

@@ -2,6 +2,11 @@
//
// 2024-08-01: Corrected `auth.routes.test.ts` by separating the mock's implementation into a `vi.hoisted` block
// and then applying it in the `vi.mock` call at the top level of the module.
//
// 2024-08-01: Corrected `vi.mock` for `passport.routes` by separating the mock's implementation into a `vi.hoisted` block
// and then applying it in the `vi.mock` call at the top level of the module. This resolves a variable
// initialization error.
//
// --- END FIX REGISTRY ---
// src/routes/auth.routes.test.ts
import { describe, it, expect, vi, beforeEach } from 'vitest';