1
0
forked from rosa/hakurei

cmd/pkgserver: implement JS test DSL and runner

This commit is contained in:
Kat
2026-03-14 20:52:28 +11:00
parent e0d3748886
commit 0b97e68ef8
6 changed files with 172 additions and 11 deletions

View File

@@ -29,6 +29,10 @@ func serveStaticContent(w http.ResponseWriter, r *http.Request) {
http.ServeFileFS(w, r, content, "ui/static/test.js")
case "/static/test.css":
http.ServeFileFS(w, r, content, "ui/static/test.css")
case "/static/all_tests.js":
http.ServeFileFS(w, r, content, "ui/static/all_tests.js")
case "/static/test_tests.js":
http.ServeFileFS(w, r, content, "ui/static/test_tests.js")
default:
http.NotFound(w, r)