Add Vitest test suite with 184 tests covering all game engine systems
Balance Check / balance-simulation (push) Successful in 7m0s
Balance Check / multi-run-balance (push) Failing after 20m5s
CI / build-and-push (push) Successful in 1m18s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-26 09:41:56 -04:00
parent 1f50f6c86c
commit a8746246f8
29 changed files with 3966 additions and 6 deletions
+7 -2
View File
@@ -6,16 +6,21 @@
"build": "turbo build",
"typecheck": "turbo typecheck",
"lint": "turbo lint",
"test": "vitest run",
"test:watch": "vitest",
"clean": "turbo clean",
"simulate": "turbo simulate --filter=@ai-tycoon/game-simulation",
"simulate:ci": "pnpm --filter @ai-tycoon/game-simulation simulate:ci"
},
"devDependencies": {
"turbo": "^2.5.0",
"typescript": "^5.8.0"
"typescript": "^5.8.0",
"vitest": "^4.1.5"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
"onlyBuiltDependencies": [
"esbuild"
]
}
}