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 ef8663461b
commit 2a3f6f5384
5 changed files with 170 additions and 11 deletions

View File

@@ -29,6 +29,8 @@ 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/test_tests.js":
http.ServeFileFS(w, r, content, "ui/static/test_tests.js")
default:
http.NotFound(w, r)