aboutsummaryrefslogtreecommitdiffstats
path: root/web/routing_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'web/routing_test.go')
-rw-r--r--web/routing_test.go12
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/",