From 769bd2ba74a565b729dd4af424c84cf6bb041815 Mon Sep 17 00:00:00 2001 From: Kyle Lesinger Date: Fri, 14 Aug 2026 07:00:24 -0500 Subject: [PATCH] Add an `npm run e2e` script for the Algorithm Catalog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit scripts/e2e.mjs landed last PR but was only reachable by typing the path, so it did not show up alongside dev / build / typecheck where someone would look for it. One line, no dependency change — `dependencies` stays react + react-dom and `devDependencies` is untouched, so `npm ci` on CI and Netlify is unaffected. Takes a base URL through npm's `--` passthrough: npm run e2e # localhost:5173 npm run e2e -- https://veda-algorithm-catalog.netlify.app Verified: `npm run e2e -- ` gives 16/16, typecheck and build clean. --- algorithm-catalog/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/algorithm-catalog/package.json b/algorithm-catalog/package.json index 2be149c..dbcc031 100644 --- a/algorithm-catalog/package.json +++ b/algorithm-catalog/package.json @@ -8,7 +8,8 @@ "dev": "vite", "build": "vite build", "preview": "vite preview", - "typecheck": "tsc --noEmit" + "typecheck": "tsc --noEmit", + "e2e": "node scripts/e2e.mjs" }, "dependencies": { "react": "^18.3.1",