test configuration in orchestrator

This commit is contained in:
DaKheera47
2026-01-11 15:40:00 +00:00
parent 18f4a166f7
commit c7e78226fc
5 changed files with 1096 additions and 3 deletions
+8 -2
View File
@@ -15,7 +15,9 @@
"db:migrate": "tsx src/server/db/migrate.ts",
"db:clear": "tsx src/server/db/clear.ts",
"db:drop": "tsx src/server/db/clear.ts --drop",
"pipeline:run": "tsx src/server/pipeline/run.ts"
"pipeline:run": "tsx src/server/pipeline/run.ts",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.12",
@@ -45,6 +47,8 @@
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/better-sqlite3": "^7.6.8",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
@@ -55,6 +59,7 @@
"autoprefixer": "^10.4.22",
"concurrently": "^9.1.0",
"drizzle-kit": "^0.30.1",
"jsdom": "^25.0.1",
"postcss": "^8.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
@@ -62,6 +67,7 @@
"tailwindcss": "^4.1.18",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.3"
"vite": "^6.0.3",
"vitest": "^4.0.16"
}
}