mirror of
https://github.com/langchain-ai/langgraphjs-api.git
synced 2026-07-22 01:05:29 -04:00
10 lines
363 B
PowerShell
10 lines
363 B
PowerShell
Set-PSDebug -Trace 1
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
pnpm run build
|
|
|
|
Remove-Item -Path "tests/graphs/.langgraph_api" -Recurse -Force -ErrorAction SilentlyContinue
|
|
npx -y concurrently -n "server,test" -k -s "command-1" `
|
|
"node dist/cli/cli.mjs dev --no-browser --config ./tests/graphs/langgraph.json" `
|
|
"npx -y wait-port -t 3000 localhost:9123 && vitest run"
|