Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion scripts/test-a11y.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cleanup() {
}
trap cleanup EXIT INT TERM

CI=1 npx @wp-playground/cli@latest server --auto-mount --login --port="$PORT" \
CI=1 npx @wp-playground/cli@3.1.40 server --auto-mount --login --port="$PORT" \
>"$LOG_FILE" 2>&1 &
PLAYGROUND_PID=$!

Expand Down
4 changes: 2 additions & 2 deletions scripts/test-lifecycle-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ cleanup() {
trap cleanup EXIT INT TERM

# Start server 1 (auto-mount — plugin source is read-write mounted).
CI=1 npx @wp-playground/cli@latest server \
CI=1 npx @wp-playground/cli@3.1.40 server \
--auto-mount --login --port="$PORT_MOUNT" \
>"$LOG_MOUNT" 2>&1 &
PID_MOUNT=$!

# Start server 2 (plain — no plugin pre-installed; test uploads the zip).
CI=1 npx @wp-playground/cli@latest server \
CI=1 npx @wp-playground/cli@3.1.40 server \
--login --port="$PORT_ZIP" \
>"$LOG_ZIP" 2>&1 &
PID_ZIP=$!
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-playground-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cleanup() {
}
trap cleanup EXIT INT TERM

CI=1 npx @wp-playground/cli@latest server --auto-mount --login --port="$PORT" >"$LOG_FILE" 2>&1 &
CI=1 npx @wp-playground/cli@3.1.40 server --auto-mount --login --port="$PORT" >"$LOG_FILE" 2>&1 &
PLAYGROUND_PID=$!

attempt=0
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-smoke-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cleanup() {
}
trap cleanup EXIT INT TERM

CI=1 npx @wp-playground/cli@latest server \
CI=1 npx @wp-playground/cli@3.1.40 server \
--auto-mount --login --port="$PORT" --blueprint="$BLUEPRINT_FILE" \
>"$LOG_FILE" 2>&1 &
PLAYGROUND_PID=$!
Expand Down
Loading