Skip to content

Commit 17005db

Browse files
authored
Merge pull request #86 from sidclawhq/fix/browser-suite-landing-server
fix(browser-tests): start the landing app for the landing-page specs
2 parents 9657ed9 + c41659d commit 17005db

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

playwright.config.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ export default defineConfig({
2828
reuseExistingServer: true,
2929
timeout: 30000,
3030
},
31+
{
32+
// The landing-page specs (01-*) target the landing app directly.
33+
// Locally an absent server made them skip; in CI they hard-failed
34+
// with ERR_CONNECTION_REFUSED on the suite's first scheduled run.
35+
command: 'cd apps/landing && npm run dev',
36+
port: 3002,
37+
reuseExistingServer: true,
38+
timeout: 60000,
39+
},
3140
],
3241
projects: [
3342
{

0 commit comments

Comments
 (0)