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
5 changes: 5 additions & 0 deletions test/install-preflight.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2854,6 +2854,11 @@ printf 'Linux\\n'
"-c",
`
source "$INSTALLER_UNDER_TEST" >/dev/null
# These tests validate the Linux Docker bootstrap branches. On a real WSL
# runner the installer intentionally skips that bootstrap, so force the helper
# under test to behave as a non-WSL Linux host while keeping uname/id/docker
# stubbed through PATH.
is_wsl_host() { return 1; }
info() { printf 'INFO: %s\\n' "$*" >&2; }
warn() { printf 'WARN: %s\\n' "$*" >&2; }
error() { printf 'ERROR: %s\\n' "$*" >&2; exit 1; }
Expand Down
Loading