diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-16 19:37:50 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-16 19:40:10 -0800 |
| commit | cba29e6aae637b04ff6eaf28f74bc15b6242b9ea (patch) | |
| tree | 226753a3fcd18a6d45089dafcb1ee72557140aa8 /web/routing_test.go | |
| parent | cb6d0c9e330c27ff85ff065c2ea6dd1a756cbf6d (diff) | |
| download | neko-cba29e6aae637b04ff6eaf28f74bc15b6242b9ea.tar.gz neko-cba29e6aae637b04ff6eaf28f74bc15b6242b9ea.tar.bz2 neko-cba29e6aae637b04ff6eaf28f74bc15b6242b9ea.zip | |
Remove legacy V2 React frontend and update build/test scripts to focus on Vanilla JS (V3)
Diffstat (limited to 'web/routing_test.go')
| -rw-r--r-- | web/routing_test.go | 12 |
1 files changed, 3 insertions, 9 deletions
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: "<!doctype html>", // from React dist/v2 - }, - { - name: "/v2/ serves new UI", - path: "/v2/", - method: "GET", - expectedStatus: http.StatusOK, - containsBody: "<!doctype html>", + containsBody: "<!doctype html>", // from V3 dist/v3 }, + { name: "/v3/ serves v3 UI", path: "/v3/", |
