Files
2026-07-13 12:10:44 +08:00

8 lines
226 B
TypeScript

import { execSync } from "child_process";
import path from "path";
export default function globalSetup() {
const webDir = path.resolve(__dirname, "..");
execSync("npm run e2e:build", { cwd: webDir, stdio: "inherit" });
}