forked from rosa/hakurei
8 lines
318 B
JavaScript
8 lines
318 B
JavaScript
#!/usr/bin/env node
|
|
// Many editors have terminal emulators built in, so running tests with NodeJS
|
|
// provides faster iteration, especially for those acclimated to test-driven
|
|
// development.
|
|
import "./test_tests.js";
|
|
import { run, StreamReporter } from "./test.js";
|
|
run(new StreamReporter({ writeln: console.log }));
|