testing admin routes
Some checks failed
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Failing after 3m18s

This commit is contained in:
2025-11-28 18:02:39 -08:00
parent 7701d2a580
commit e9c4b5fe83

View File

@@ -108,10 +108,10 @@ jobs:
# The `|| true` ensures that the workflow continues even if one of the test suites fails.
# This allows the coverage reports to be generated and merged regardless of test success.
echo "--- Running Unit Tests ---"
npm run test:unit -- --coverage --verbose --includeTaskLocation --testTimeout=20000 || true
npm run test:unit -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=20000 || true
echo "--- Running Integration Tests ---"
npm run test:integration -- --coverage --verbose --includeTaskLocation --testTimeout=20000 || true
npm run test:integration -- --coverage --reporter=verbose --includeTaskLocation --testTimeout=20000 || true
continue-on-error: true # Allows the workflow to proceed even if tests fail.