UNPKG

washington

Version:

A pure, functional unit testing tool with a dependency-free test suite API.

10 lines (8 loc) 190 B
#!/usr/bin/env node const washington = require('..') const tests = require(process.cwd() + '/' + process.argv[2]) if (tests instanceof Array) { washington(tests) } else { tests.run() }