mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
6 lines
244 B
TypeScript
6 lines
244 B
TypeScript
// import.meta.env is undefined when Playwright bundles test code,
|
|
// so we need to check if it exists before accessing it
|
|
export const IS_E2E_TEST_RUN =
|
|
typeof import.meta.env !== "undefined" &&
|
|
import.meta.env.VITE_E2E_TEST_RUN === "true";
|