Files
codex-retry-gateway/scripts/test-gateway-e2e.ps1
T
2026-06-26 10:07:55 +08:00

10 lines
220 B
PowerShell

$ErrorActionPreference = "Stop"
$scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path
$nodeScript = Join-Path $scriptDir "test-gateway-e2e.mjs"
node $nodeScript
if ($LASTEXITCODE -ne 0) {
exit $LASTEXITCODE
}