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

@@ -0,0 +1,4 @@
#!/usr/bin/env node
import "./test_tests.js";
import { run, StreamReporter } from "./test.js";
run(new StreamReporter({ writeln: console.log }));