test(backend): cover phase 5 and 6 migrations

This commit is contained in:
poyrazavsever
2026-07-17 00:17:06 +03:00
parent 678c0236db
commit 6322a01d0d
8 changed files with 318 additions and 2 deletions
+11
View File
@@ -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.");