This package allows you to run tests written in the style of web-platform-tests, but from within Node.js. It does this by running your tests inside a jsdom instance. You can optionally run some setup code beforehand, for example to set up a polyfill that you want to test.
This is useful to a fairly narrow class of consumer: those who both
- want to write tests in web-platform-tests format; and,
- want to develop and test in a Node.js environment instead of a true browser.
So for example, it might be useful if you're developing a polyfill or reference implementation for a new browser feature, but want to do so in JavaScript, and get the fast no-recompile feedback loop of Node.js.
After installing, you can do
$ wpt-runner directory-of-test-filesYou can also pass your setup file:
$ wpt-runner directory-of-test-files setup.jsThis will run all .html files found by recursively crawling the specified directory. The program's exit code will be the number of failing files encountered (0 for success).
The setup is fairly similar. Here is a usage example:
const wptRunner = require("wpt-runner");
wptRunner(testsPath, setup)
.then(failures => process.exit(failures))
.catch(e => {
console.error(e.stack);
process.exit(1);
});The setup argument is optional, and there's an optional third argument which allows passing a custom reporter instead of one that outputs to the console. (Check out lib/console-reporter.js for an example.) The returned promise fulfills with the number of failing files encountered (0 for success), or rejects if there was some I/O error retrieving the files.