Files
socaichat/langgraph/vitest.config.ts
T
gongzhiyong b93f08f206
Deploy LangGraph Server to Azure Web App / build-and-deploy (push) Failing after 24s
Deploy LangGraph UI to Azure Static Web Apps / build-and-deploy (push) Failing after 39s
feat: soc-client timeout via toolConfig, 24 unit tests, fix abort early-check and placeholder regex
2026-04-12 14:57:06 +08:00

15 lines
246 B
TypeScript

import { defineConfig } from "vitest/config";
import path from "path";
export default defineConfig({
test: {
globals: true,
environment: "node",
},
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
});