frigate/web/e2e/global-setup.ts
2026-04-06 11:15:22 -05: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" });
}