1
0
forked from rosa/hakurei

2 Commits

Author SHA1 Message Date
Kat
d91b9f4730 TODO: actually write tests lol 2026-03-29 06:11:52 +11:00
Kat
90277bf6fe cmd/pkgserver/ui_test: implement skipping from DSL 2026-03-29 06:11:52 +11:00

View File

@@ -231,7 +231,7 @@ export class StreamReporter implements Reporter {
this.stream.writeln("");
this.stream.writeln(
`${this.#successes.length} succeeded, ${this.#failures.length} failed` +
(this.#skips.length ? `, ${this.#skips.length} skipped` : "")
(this.#skips.length ? `, ${this.#skips.length} skipped` : ""),
);
}