alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Update playwright.config.ts
author
pdelfan
date
2 months ago
(May 4, 2026, 9:21 AM -0700)
commit
7ed18cc2
7ed18cc2ae5a82733ba03543ce37e2e19c148b04
parent
cb6de0f9
cb6de0f95f66887bf34292eec3f9f95d531fe658
+6
-5
1 changed file
Expand all
Collapse all
Unified
Split
src
webapp
playwright.config.ts
+6
-5
src/webapp/playwright.config.ts
View file
Reviewed
···
71
71
],
72
72
73
73
/* Run your local dev server before starting the tests */
74
74
-
// webServer: {
75
75
-
// command: 'npm run start',
76
76
-
// url: 'http://localhost:3000',
77
77
-
// reuseExistingServer: !process.env.CI,
78
78
-
// },
74
74
+
webServer: {
75
75
+
command: 'npm run dev',
76
76
+
url: 'http://127.0.0.1:4000',
77
77
+
reuseExistingServer: !process.env.CI,
78
78
+
timeout: 45_000,
79
79
+
},
79
80
});