Add backend unit/integration tests, Playwright e2e tests, README, cookie Secure fix
SonarQube Analysis / sonarqube (push) Successful in 4m20s

This commit is contained in:
2026-08-13 22:35:38 +00:00
parent 2adbf24b23
commit 921022c658
25 changed files with 6600 additions and 57 deletions
+14 -2
View File
@@ -5,7 +5,13 @@
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js"
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"test": "npm run test:unit",
"test:unit": "jest -c jest.unit.config.js",
"test:integration": "jest -c jest.integration.config.js --runInBand",
"db:test:up": "docker compose -f docker-compose.test.yml up -d",
"db:test:down": "docker compose -f docker-compose.test.yml down -v"
},
"dependencies": {
"express": "^4.19.2",
@@ -17,12 +23,18 @@
},
"devDependencies": {
"typescript": "^5.5.4",
"tsx": "^4.16.5",
"@types/express": "^4.17.21",
"@types/node": "^20.14.15",
"@types/multer": "^1.4.11",
"@types/pg": "^8.11.6",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/nodemailer": "^6.4.15"
"@types/nodemailer": "^6.4.15",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"@types/jest": "^29.5.12",
"supertest": "^7.0.0",
"@types/supertest": "^6.0.2"
}
}