From cba29e6aae637b04ff6eaf28f74bc15b6242b9ea Mon Sep 17 00:00:00 2001 From: Adam Mathes Date: Mon, 16 Feb 2026 19:37:50 -0800 Subject: Remove legacy V2 React frontend and update build/test scripts to focus on Vanilla JS (V3) --- web/routing_test.go | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) (limited to 'web/routing_test.go') diff --git a/web/routing_test.go b/web/routing_test.go index a7c5c37..ce5e671 100644 --- a/web/routing_test.go +++ b/web/routing_test.go @@ -22,19 +22,13 @@ func TestRouting(t *testing.T) { containsBody string }{ { - name: "Root serves new UI", + name: "Root serves V3 UI", path: "/", method: "GET", expectedStatus: http.StatusOK, - containsBody: "", // from React dist/v2 - }, - { - name: "/v2/ serves new UI", - path: "/v2/", - method: "GET", - expectedStatus: http.StatusOK, - containsBody: "", + containsBody: "", // from V3 dist/v3 }, + { name: "/v3/ serves v3 UI", path: "/v3/", -- cgit v1.2.3