UNPKG

elm-test-rs

Version:

Fast and portable executable to run your Elm tests.

10 lines (6 loc) 221 B
#!/usr/bin/env node var child_process = require("child_process"); var binaryPath = require("./binary.js")(); child_process .spawn(binaryPath, process.argv.slice(2), { stdio: "inherit" }) .on("exit", process.exit);