sendou.ink/app/utils/e2e.ts
2026-07-30 13:37:33 +03:00

8 lines
453 B
TypeScript

// import.meta.env is undefined when Playwright bundles test code, so we need to
// check if it exists before accessing it. There the flag comes from process.env
// instead (set by playwright.config.ts), as app modules run in the test process too.
export const IS_E2E_TEST_RUN =
(typeof import.meta.env !== "undefined" &&
import.meta.env.VITE_E2E_TEST_RUN === "true") ||
(typeof process !== "undefined" && process.env.VITE_E2E_TEST_RUN === "true");