aboutsummaryrefslogtreecommitdiffstats
path: root/syz-cluster/dashboard/handler_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'syz-cluster/dashboard/handler_test.go')
-rw-r--r--syz-cluster/dashboard/handler_test.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/syz-cluster/dashboard/handler_test.go b/syz-cluster/dashboard/handler_test.go
index a1200582e..8bdb5c318 100644
--- a/syz-cluster/dashboard/handler_test.go
+++ b/syz-cluster/dashboard/handler_test.go
@@ -26,7 +26,11 @@ func TestURLs(t *testing.T) {
handler, baseURL := testServer(t, env)
urlGen := api.NewURLGenerator(baseURL)
- urls := []string{urlGen.Series(ids.SeriesID)}
+ urls := []string{
+ baseURL,
+ baseURL + "/stats",
+ urlGen.Series(ids.SeriesID),
+ }
for _, buildID := range []string{ids.BaseBuildID, ids.PatchedBuildID} {
urls = append(urls, urlGen.BuildConfig(buildID))
urls = append(urls, urlGen.BuildLog(buildID))