Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tests/test-plugin-build-pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@ assert_eq() {
local expected="$1" actual="$2" context="$3"
if [ "$expected" != "$actual" ]; then
echo "FAIL [$context]: expected '$expected', got '$actual'" >&2
# If the most-recent run captured output, surface it so CI failures
# aren't black boxes. Tests that don't use RUN_OUT just print empty.
if [ -n "${RUN_OUT:-}" ]; then
echo "--- captured output ---" >&2
echo "$RUN_OUT" >&2
echo "--- end captured output ---" >&2
fi
exit 1
fi
}
Expand Down
Loading