12 lines
401 B
JavaScript
12 lines
401 B
JavaScript
import { execFileSync } from "node:child_process";
|
|
|
|
for (const [command, args] of [
|
|
[process.execPath, ["scripts/phase5-backend-boundary.mjs"]],
|
|
[process.execPath, ["scripts/phase2-domain-smoke.mjs"]],
|
|
[process.execPath, ["scripts/phase1-auth-smoke.mjs"]],
|
|
]) {
|
|
execFileSync(command, args, { cwd: process.cwd(), stdio: "inherit" });
|
|
}
|
|
|
|
console.log("Phase 5 freelancer backend smoke passed.");
|