@cankode/test-runner-node
v0.0.2
Published
test-utils
Downloads
7
Readme
@cankode/test-runner-node
runTests
will glob search your disk and run every match it finds
// run-test.ts
import { runTests } from '@cankode/test-runner-node';
main();
async function main() {
runTests('./**/*.spec.ts');
}