Files
rules_bun/tests/script_test/run_workspace_parallel.sh
eric b35f03872c
Some checks failed
CI / test (ubuntu-latest, linux-x64) (pull_request) Failing after 32s
CI / test (macos-14, darwin-arm64) (pull_request) Has been cancelled
CI / test (windows-latest, windows) (pull_request) Has been cancelled
test: add more tests
2026-03-15 00:59:58 +01:00

16 lines
343 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
script_bin="$1"
output="$(${script_bin})"
if [[ ${output} != *"pkg-a"* ]]; then
echo "Expected workspace parallel run output to include pkg-a: ${output}" >&2
exit 1
fi
if [[ ${output} != *"pkg-b"* ]]; then
echo "Expected workspace parallel run output to include pkg-b: ${output}" >&2
exit 1
fi