Add CI test workflow with job summaries
SonarQube Analysis / sonarqube (push) Successful in 3m55s
Tests / backend-unit (push) Failing after 55s
Tests / backend-integration (push) Failing after 2s
Tests / frontend-e2e (push) Failing after 1s

This commit is contained in:
2026-08-13 19:10:30 -05:00
parent f5218782e9
commit 234330e482
4 changed files with 264 additions and 1 deletions
+3 -1
View File
@@ -9,7 +9,9 @@
"dev": "tsx watch src/server.ts",
"test": "npm run test:unit",
"test:unit": "jest -c jest.unit.config.js",
"test:unit:json": "jest -c jest.unit.config.js --json --outputFile=unit-results.json",
"test:integration": "jest -c jest.integration.config.js --runInBand",
"test:integration:json": "jest -c jest.integration.config.js --runInBand --json --outputFile=integration-results.json",
"db:test:up": "docker compose -f docker-compose.test.yml up -d",
"db:test:down": "docker compose -f docker-compose.test.yml down -v"
},
@@ -37,4 +39,4 @@
"supertest": "^7.0.0",
"@types/supertest": "^6.0.2"
}
}
}