From f280b26fe938080967c332d88fa6eaba70dab870 Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Thu, 28 Dec 2023 23:18:18 +0800 Subject: [PATCH] fix: import `process` instead of reading from the global variable Fixes https://github.com/vuejs/create-vue/issues/195#issuecomment-1421967970 In the long run we need to add https://github.com/playwright-community/eslint-plugin-playwright/ to the playwright setup too. --- template/config/playwright/playwright.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/template/config/playwright/playwright.config.js b/template/config/playwright/playwright.config.js index ad20dabc..92075cc1 100644 --- a/template/config/playwright/playwright.config.js +++ b/template/config/playwright/playwright.config.js @@ -1,3 +1,4 @@ +import process from 'node:process' import { defineConfig, devices } from '@playwright/test' /**