commit 932609f72013de030a19feb389e4b903e1e9f05b
parent ae9cb13cf8fdf4b5f2ec9e104d56824dde058713
Author: MTRNord <mtrnord1@gmail.com>
Date: Sat, 1 Jan 2022 16:12:20 +0100
Fix webserver start
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/playwright.config.ts b/playwright.config.ts
@@ -104,10 +104,10 @@ const config: PlaywrightTestConfig = {
/* Folder for test artifacts such as screenshots, videos, traces, etc. */
outputDir: 'test-results/',
- /* Run your local dev server before starting the tests
+ /* Run your local dev server before starting the tests */
webServer: {
command: 'npm run dev-tests',
port: 3001,
- },*/
+ },
};
export default config;