removed jest

This commit is contained in:
Bojan Kucera 2025-06-04 12:48:09 -04:00
parent fb22815450
commit 68592619f9
7 changed files with 242 additions and 203 deletions

View file

@ -8,11 +8,11 @@
"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:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"test:unit": "bun test test/unit",
"test:integration": "bun test test/integration",
"test:e2e": "bun test test/e2e",
"test:libs": "turbo run test --filter=./libs/*",
"test:apps": "turbo run test --filter=./apps/*/*",
"lint": "turbo run lint",
@ -41,12 +41,7 @@
"@types/node": "^20.12.12",
"turbo": "^2.5.4",
"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",
"bun-types": "^1.2.15",
"@testcontainers/postgresql": "^10.7.2",
"@testcontainers/mongodb": "^10.7.2",
"mongodb-memory-server": "^9.1.6",