run-tests.js 221 B

12345678
  1. // run-tests.js
  2. const { execSync } = require("child_process")
  3. if (process.platform === "win32") {
  4. execSync("npm-run-all test:*", { stdio: "inherit" })
  5. } else {
  6. execSync("npm-run-all -p test:*", { stdio: "inherit" })
  7. }