test-tap/tests/01_tap.t.js

20 lines
379 B
JavaScript

/** @implements TapRenderer */
class FakeRenderer {
output = "nothing yet";
commentOutput = "";
out(text) {
this.output = text;
}
comment(lines) {
for (var line of lines) {
this.commentOutput += line;
}
}
}
import('./suite.mjs').then(m => {
m.runTest(m.Tap.Node(), "Tap dogfood test suite", m.tapSuite);
});