mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
8 lines
221 B
JavaScript
8 lines
221 B
JavaScript
// run-tests.js
|
|
const { execSync } = require("child_process")
|
|
|
|
if (process.platform === "win32") {
|
|
execSync("npm-run-all test:*", { stdio: "inherit" })
|
|
} else {
|
|
execSync("npm-run-all -p test:*", { stdio: "inherit" })
|
|
}
|