File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ import { AUTH_STORAGE_DIR } from './src/helpers/constants';
99
1010import type { BrowserTarget , ProjectMetadata } from './src/helpers/types' ;
1111
12- console . log ( process . env . APP_PORT ) ;
13-
1412const appPort = parseNumber ( process . env . APP_PORT ) ;
1513const gatewayPort = parseNumber ( process . env . GATEWAY_PORT ) ;
1614
@@ -73,18 +71,18 @@ export default defineConfig({
7371 webServer : [
7472 {
7573 command : 'true' , // Dummy command since services are assumed running in Docker
76- url : `http://localhost: ${ appPort } /api/v1/setup` ,
77- timeout : 10_000
74+ timeout : 10_000 ,
75+ url : `http://localhost: ${ appPort } /api/v1/setup`
7876 } ,
7977 {
8078 command : 'true' , // Dummy command since services are assumed running in Docker
81- url : `http://localhost: ${ gatewayPort } /api/healthcheck` ,
82- timeout : 10_000
79+ timeout : 10_000 ,
80+ url : `http://localhost: ${ gatewayPort } /api/healthcheck`
8381 } ,
8482 {
8583 command : 'true' , // Dummy command since services are assumed running in Docker
86- url : `http://localhost: ${ appPort } ` ,
87- timeout : 10_000
84+ timeout : 10_000 ,
85+ url : `http://localhost: ${ appPort } `
8886 }
8987 ] ,
9088 workers : process . env . CI ? 1 : undefined
Original file line number Diff line number Diff line change 33 "compilerOptions" : {
44 "lib" : [" DOM" ]
55 },
6- "include" : [" src/**/*" , " playwright.config.ts" ]
6+ "include" : [" src/**/*" , " playwright.config.ts" , " playwright.docker.config.ts " ]
77}
You can’t perform that action at this time.
0 commit comments