From 37aba4be7b3cd6833a28a3a1b084c39bc1360f2c Mon Sep 17 00:00:00 2001 From: pixelass Date: Wed, 21 Feb 2024 22:36:07 +0100 Subject: [PATCH] revert: revert change --- playwright/index.test.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/playwright/index.test.ts b/playwright/index.test.ts index 50958b07d..55adf008a 100644 --- a/playwright/index.test.ts +++ b/playwright/index.test.ts @@ -1,5 +1,3 @@ -import process from "process"; - import type { ElectronApplication, Page } from "@playwright/test"; import { test, expect } from "@playwright/test"; import { _electron as electron } from "playwright"; @@ -11,10 +9,6 @@ test.beforeAll(async () => { // Use package.main electronApp = await electron.launch({ args: ["."], - env: { - ...process.env, - NODE_ENV: "development", - }, }); const isPackaged = await electronApp.evaluate(async ({ app }) => app.isPackaged);