@@ -278,7 +278,7 @@ describe('e2e watch workflow', () => {
278278 round_profile : 'default' ,
279279 timeout_minutes : 60 ,
280280 watch_timeout_ms : '420000' ,
281- watch_max_plugin_process_ms : '30000 ' ,
281+ watch_max_plugin_process_ms : '60000 ' ,
282282 watch_command_timeout_ms : '1500000' ,
283283 } ,
284284 {
@@ -399,8 +399,9 @@ describe('e2e watch workflow', () => {
399399 watch_case : 'demo' ,
400400 round_profile : 'default' ,
401401 timeout_minutes : 150 ,
402- watch_timeout_ms : '540000' ,
403- watch_max_plugin_process_ms : '30000' ,
402+ watch_timeout_ms : '900000' ,
403+ watch_max_plugin_process_ms : '60000' ,
404+ watch_max_attempts : '3' ,
404405 watch_command_timeout_ms : '7200000' ,
405406 } ) )
406407 expect ( nightlyRows ) . toContainEqual ( expect . objectContaining ( {
@@ -420,7 +421,7 @@ describe('e2e watch workflow', () => {
420421 round_profile : 'default' ,
421422 timeout_minutes : 180 ,
422423 watch_timeout_ms : '1200000' ,
423- watch_max_plugin_process_ms : '30000 ' ,
424+ watch_max_plugin_process_ms : '60000 ' ,
424425 watch_command_timeout_ms : '9000000' ,
425426 } ) )
426427 } )
@@ -441,7 +442,7 @@ describe('e2e watch workflow', () => {
441442 expect ( nightlyRunStep . env . E2E_WATCH_MAX_ATTEMPTS ) . toBe ( "${{ matrix.watch_max_attempts || '2' }}" )
442443 } )
443444
444- it ( 'keeps any explicit e2e watch plugin processing matrix budget within 30000ms ' , ( ) => {
445+ it ( 'keeps any explicit e2e watch plugin processing matrix budget within 60000ms ' , ( ) => {
445446 const { workflow } = readWorkflow ( 'e2e-watch.yml' )
446447 const rows : Array < Record < string , unknown > > = [
447448 ...workflow . jobs [ 'pr-quick-gate' ] . strategy . matrix . include ,
@@ -453,7 +454,7 @@ describe('e2e watch workflow', () => {
453454 if ( budget == null ) {
454455 continue
455456 }
456- expect ( Number ( budget ) , `${ row . runner_label } :${ row . watch_case } :${ row . round_profile } ` ) . toBeLessThanOrEqual ( 30000 )
457+ expect ( Number ( budget ) , `${ row . runner_label } :${ row . watch_case } :${ row . round_profile } ` ) . toBeLessThanOrEqual ( 60000 )
457458 }
458459 } )
459460
0 commit comments