From 42ca88d27e167520e609006341933712423636dc Mon Sep 17 00:00:00 2001 From: ISA Date: Tue, 16 Sep 2025 14:27:53 +0200 Subject: [PATCH] chore: playwright ohne webserver --- .env.development | 2 +- .env.production | 2 +- package-lock.json | 4 ++-- package.json | 2 +- playwright.config.js | 6 ------ 5 files changed, 5 insertions(+), 11 deletions(-) diff --git a/.env.development b/.env.development index 6a31f2f46..a08e4848a 100644 --- a/.env.development +++ b/.env.development @@ -23,4 +23,4 @@ NEXT_PUBLIC_USE_MOCKS=true # z.B. http://10.10.0.13/xyz/index.aspx -> basePath in config.json auf /xyz setzen # basePath wird jetzt in public/config.json gepflegt # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.1.379 +NEXT_PUBLIC_APP_VERSION=1.1.380 diff --git a/.env.production b/.env.production index c3a3a60fe..aa774cfcc 100644 --- a/.env.production +++ b/.env.production @@ -24,4 +24,4 @@ NEXT_PUBLIC_USE_MOCKS=false # basePath wird jetzt in public/config.json gepflegt # App-Versionsnummer -NEXT_PUBLIC_APP_VERSION=1.1.379 +NEXT_PUBLIC_APP_VERSION=1.1.380 diff --git a/package-lock.json b/package-lock.json index f88ddf6c8..233fffc69 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nodemap", - "version": "1.1.379", + "version": "1.1.380", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "nodemap", - "version": "1.1.379", + "version": "1.1.380", "dependencies": { "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", diff --git a/package.json b/package.json index 4dc7490c6..717ae2ef3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodemap", - "version": "1.1.379", + "version": "1.1.380", "dependencies": { "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", diff --git a/playwright.config.js b/playwright.config.js index 01597d761..f7335fedf 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -28,10 +28,4 @@ module.exports = defineConfig({ use: { ...devices["Desktop Chrome"] }, }, ], - webServer: { - command: "node server.js", - port: 3000, - reuseExistingServer: !process.env.CI, - timeout: 120_000, - }, });