From ffc3f7fc9918149605cf76c081fdeb851856dd99 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Fri, 19 Jul 2024 15:00:44 +0200 Subject: [PATCH] revert some more unneeded changes --- tests/playwright-test/playwright-test-fixtures.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/playwright-test/playwright-test-fixtures.ts b/tests/playwright-test/playwright-test-fixtures.ts index 632e09ca9f..6f8afb6112 100644 --- a/tests/playwright-test/playwright-test-fixtures.ts +++ b/tests/playwright-test/playwright-test-fixtures.ts @@ -56,7 +56,7 @@ type TSCResult = { exitCode: number; }; -export type Files = { [key: string]: string | Buffer; }; +export type Files = { [key: string]: string | Buffer }; type Params = { [key: string]: string | number | boolean | string[] }; export async function writeFiles(testInfo: TestInfo, files: Files, initial: boolean) { @@ -233,7 +233,7 @@ export function cleanEnv(env: NodeJS.ProcessEnv): NodeJS.ProcessEnv { PWTEST_BOT_NAME: undefined, TEST_WORKER_INDEX: undefined, TEST_PARALLEL_INDEX: undefined, - // NODE_OPTIONS: undefined, + NODE_OPTIONS: undefined, ...env, }; }