added initial integration tests with bun

This commit is contained in:
Bojan Kucera 2025-06-04 12:26:55 -04:00
parent 3e451558ac
commit fb22815450
52 changed files with 7588 additions and 364 deletions

View file

@ -8,6 +8,13 @@
"build": "turbo run build",
"build:libs": "pwsh ./scripts/build-libs.ps1",
"test": "turbo run test",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:e2e": "jest --testPathPattern=e2e",
"test:libs": "turbo run test --filter=./libs/*",
"test:apps": "turbo run test --filter=./apps/*/*",
"lint": "turbo run lint",
"clean": "turbo run clean",
"start": "turbo run start",
@ -33,7 +40,19 @@
"devDependencies": {
"@types/node": "^20.12.12",
"turbo": "^2.5.4",
"typescript": "^5.4.5"
"typescript": "^5.4.5",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"@jest/globals": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-mock-extended": "^3.0.5",
"@testcontainers/postgresql": "^10.7.2",
"@testcontainers/mongodb": "^10.7.2",
"mongodb-memory-server": "^9.1.6",
"pg-mem": "^2.8.1",
"supertest": "^6.3.4",
"@types/supertest": "^6.0.2"
},
"packageManager": "bun@1.1.12",
"engines": {