some more re-org + fixes
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 3m55s

This commit is contained in:
2025-11-24 15:02:13 -08:00
parent a4d5e95937
commit 2f55a303b0
5 changed files with 40 additions and 24 deletions

View File

@@ -14,7 +14,8 @@ const { test: _unusedTest, ...baseViteConfig } = viteConfig as any;
console.error('\n[DEBUG] --- INTEGRATION CONFIG SETUP ---');
// Use _unusedTest to satisfy linter
console.error(`[DEBUG] Stripped "test" config. Original test config existed: ${!!_unusedTest}`);
console.error('[DEBUG] Does baseViteConfig have "test"?', !!(baseViteConfig as any).test);
// Use the 'in' operator for a type-safe property check instead of casting to 'any'.
console.error('[DEBUG] Does baseViteConfig have "test"?', 'test' in baseViteConfig);
/**
* This configuration is specifically for integration tests.