From a1054fbe1b2e327bd7c03fed215ddb801240f5ba Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 2 May 2026 16:22:20 -0700 Subject: [PATCH] test(e2e): allow npm configured plugin installs --- scripts/e2e/lib/upgrade-survivor/run.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/e2e/lib/upgrade-survivor/run.sh b/scripts/e2e/lib/upgrade-survivor/run.sh index 250c0d91e76..f6565f3090c 100644 --- a/scripts/e2e/lib/upgrade-survivor/run.sh +++ b/scripts/e2e/lib/upgrade-survivor/run.sh @@ -336,10 +336,9 @@ assert_configured_plugin_installs_clawhub_attempted() { return 0 fi local requests_file="$ARTIFACT_ROOT/clawhub-not-found-requests.jsonl" - if ! grep -q '/api/v1/packages/%40openclaw%2Fmatrix' "$requests_file" 2>/dev/null; then - echo "configured plugin install scenario did not attempt ClawHub for @openclaw/matrix" >&2 - cat "$requests_file" >&2 2>/dev/null || true - return 1 + # The install catalog may prefer npm; assertions.mjs validates the installed source. + if grep -q '/api/v1/packages/%40openclaw%2Fmatrix' "$requests_file" 2>/dev/null; then + echo "configured plugin install scenario attempted ClawHub for @openclaw/matrix" fi }