fix: billing.NoopStore in clone test + repo analysis doc

This commit is contained in:
“Naeel”
2026-05-21 09:14:31 +04:00
parent ab128515ab
commit 53ef35968e
2 changed files with 280 additions and 3 deletions
+5 -3
View File
@@ -13,6 +13,7 @@ import (
"strings"
"testing"
"fission-console/internal/billing"
"fission-console/internal/fission"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -48,9 +49,10 @@ func newCloneTestServer(t *testing.T, storagesvcHandler http.HandlerFunc, objs .
}
s := &Server{
dyn: dynClient,
ns: "fission-test",
http: httpClient,
dyn: dynClient,
ns: "fission-test",
http: httpClient,
billing: billing.NoopStore{},
}
return s, storagesvc
}