initial commit

This commit is contained in:
iceBear67
2026-07-15 14:28:58 +08:00
commit 6e0d7ec33f
47 changed files with 4022 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# Build the hub, then run the end-to-end integration suite.
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
# The Java hub must be installed for the e2e harness to launch it.
"$ROOT/scripts/build.sh"
echo ">> Running Go unit tests..."
( cd "$ROOT" && go test ./client/... -count=1 )
echo ">> Running end-to-end tests..."
( cd "$ROOT" && go test ./e2e/... -count=1 -v -timeout 300s )