This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

Update playwright.config.ts

+6 -5
+6 -5
src/webapp/playwright.config.ts
··· 71 71 ], 72 72 73 73 /* Run your local dev server before starting the tests */ 74 - // webServer: { 75 - // command: 'npm run start', 76 - // url: 'http://localhost:3000', 77 - // reuseExistingServer: !process.env.CI, 78 - // }, 74 + webServer: { 75 + command: 'npm run dev', 76 + url: 'http://127.0.0.1:4000', 77 + reuseExistingServer: !process.env.CI, 78 + timeout: 45_000, 79 + }, 79 80 });