From 2e7cccc0e83a1d214ab3ddf7e903fdef983d724a Mon Sep 17 00:00:00 2001 From: Perplexity Computer Date: Thu, 26 Mar 2026 16:43:01 +0000 Subject: [PATCH] =?UTF-8?q?delete:=20tests/run-smoke.sh=20=E2=80=94=20does?= =?UTF-8?q?=20not=20serve=20heartbeat/harness/portal=20(#548)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/run-smoke.sh | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100755 tests/run-smoke.sh diff --git a/tests/run-smoke.sh b/tests/run-smoke.sh deleted file mode 100755 index 3180ce1..0000000 --- a/tests/run-smoke.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env bash -# run-smoke.sh — Run Nexus smoke tests locally. No LLM. No cloud. -# -# Usage: -# ./tests/run-smoke.sh # Run all smoke tests -# ./tests/run-smoke.sh --headed # Run with visible browser (debug) -# ./tests/run-smoke.sh --grep "HUD" # Run specific test group -# -# Requirements: playwright installed (npm i -D @playwright/test) -# First run: npx playwright install chromium - -set -euo pipefail -cd "$(dirname "$0")/.." - -# Ensure playwright is available -if ! command -v npx &>/dev/null; then - echo "ERROR: npx not found. Install Node.js." - exit 1 -fi - -# Install playwright test if needed -if [ ! -d node_modules/@playwright ]; then - echo "Installing playwright test runner..." - npm install --save-dev @playwright/test 2>&1 | tail -3 -fi - -# Ensure browser is installed -npx playwright install chromium --with-deps 2>/dev/null || true - -# Run tests -echo "" -echo "=== NEXUS SMOKE TESTS ===" -echo "" -npx playwright test tests/smoke.spec.js -c tests/playwright.config.js "$@" -EXIT=$? - -echo "" -if [ $EXIT -eq 0 ]; then - echo "✅ ALL SMOKE TESTS PASSED" -else - echo "❌ SOME TESTS FAILED (exit $EXIT)" -fi -exit $EXIT