test(backend): cover phase 5 and 6 migrations
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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.");
|
||||
Reference in New Issue
Block a user