From cb9817c9ae283e3330f72cfc9283729d18b40ee3 Mon Sep 17 00:00:00 2001 From: Erik Marks Date: Thu, 1 Aug 2024 14:13:44 +0100 Subject: [PATCH] fix(browser-test): Fix web server start script in browser-test --- browser-test/playwright.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser-test/playwright.config.js b/browser-test/playwright.config.js index 536e796e22..936d22c0ae 100644 --- a/browser-test/playwright.config.js +++ b/browser-test/playwright.config.js @@ -56,7 +56,7 @@ module.exports = defineConfig({ /* Run your local dev server before starting the tests */ webServer: { - command: 'npm run start', + command: 'node server.js', url: 'http://127.0.0.1:3000', reuseExistingServer: true, },