File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
apps/router-demo/router-host-2000 Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 4343 "browser" : " electron" ,
4444 "exit" : false ,
4545 "watch" : true
46+ },
47+ "ci" : {
48+ "watch" : false ,
49+ "headed" : false ,
50+ "exit" : true ,
51+ "browser" : " chrome"
4652 }
4753 }
4854 },
5662 "forwardAllArgs" : false
5763 },
5864 {
59- "command" : " sleep 4 && nx run router-host-2000:e2e --watch " ,
65+ "command" : " pnpm exec wait-on http://127.0.0.1:2000 && nx run router-host-2000:e2e --configuration=ci " ,
6066 "forwardAllArgs" : true
6167 }
6268 ]
Original file line number Diff line number Diff line change @@ -210,13 +210,6 @@ function getWaitFactory(scenario) {
210210}
211211
212212function getCiWaitMs ( scenario ) {
213- const userOverride = Number . parseInt (
214- process . env . ROUTER_E2E_CI_WAIT_MS ?? '' ,
215- 10 ,
216- ) ;
217- if ( ! Number . isNaN ( userOverride ) && userOverride >= 0 ) {
218- return userOverride ;
219- }
220213 if ( typeof scenario . ciWaitMs === 'number' && scenario . ciWaitMs >= 0 ) {
221214 return scenario . ciWaitMs ;
222215 }
You can’t perform that action at this time.
0 commit comments