agent/tests/cli/branch/delete/Taskfile.yaml
Snider ecd47fe3db revert fcb9c189e5
revert fix(agentic): harden TODO workspace write

Co-Authored-By: Virgil <virgil@lethean.io>
2026-04-18 11:22:27 +00:00

18 lines
473 B
YAML

version: "3"
tasks:
test:
cmds:
- |
bash <<'EOF'
set -euo pipefail
source ../../_lib/run.sh
go build -trimpath -ldflags="-s -w" -o bin/core-agent ../../../../cmd/core-agent
output="$(mktemp)"
run_capture_all 1 "$output" ./bin/core-agent branch/delete
assert_contains "usage:" "$output"
assert_contains "repo" "$output"
assert_contains "branch" "$output"
EOF