Files
2026-08-27 21:09:14 +00:00

8 lines
165 B
TypeScript

import { beforeAll } from "bun:test";
const FOO = process.env.FOO ?? "";
beforeAll(() => {
if (!FOO) throw new Error("Environment variable FOO is not set");
});