@@ -57,6 +57,7 @@ describe("Deployment happy path", async () => {
5757 location : { type : LocationType . Local } ,
5858 deployment : {
5959 graph : {
60+ parallelTestApp : true ,
6061 testApp : {
6162 name : "comp-1-test-app-name" ,
6263 id : "comp-1-test-app" ,
@@ -498,6 +499,7 @@ describe("deployGraph - deployment ordering and concurrency", async () => {
498499 const deployStub = sinon . stub ( ) . callsFake ( async ( _cfg , _ws , spec ) => `sha-${ spec . id } ` )
499500 const SuiteHandler = await loadWithStub ( deployStub )
500501 const graph = {
502+ parallelTestApp : true ,
501503 testApp : makeSpec ( "test-app" ) ,
502504 components : [ makeSpec ( "comp-a" ) , makeSpec ( "comp-b" ) ]
503505 }
@@ -520,6 +522,7 @@ describe("deployGraph - deployment ordering and concurrency", async () => {
520522 } )
521523 const SuiteHandler = await loadWithStub ( deployStub )
522524 const graph = {
525+ parallelTestApp : true ,
523526 testApp : makeSpec ( "testApp" ) ,
524527 components : [ makeSpec ( "B" , { parallel : true } ) , makeSpec ( "C" , { parallel : true } ) ]
525528 }
@@ -549,6 +552,7 @@ describe("deployGraph - deployment ordering and concurrency", async () => {
549552 const SuiteHandler = await loadWithStub ( deployStub )
550553 // B is parallel:true, C has no parallel flag — same dependency level, so neither waits on the other
551554 const graph = {
555+ parallelTestApp : true ,
552556 testApp : makeSpec ( "testApp" ) ,
553557 components : [ makeSpec ( "B" , { parallel : true } ) , makeSpec ( "C" ) ]
554558 }
@@ -579,6 +583,7 @@ describe("deployGraph - deployment ordering and concurrency", async () => {
579583 } )
580584 const SuiteHandler = await loadWithStub ( deployStub )
581585 const graph = {
586+ parallelTestApp : true ,
582587 testApp : makeSpec ( "testApp" ) ,
583588 components : [
584589 makeSpec ( "A" ) ,
@@ -624,6 +629,7 @@ describe("deployGraph - deployment ordering and concurrency", async () => {
624629 } )
625630 const SuiteHandler = await loadWithStub ( deployStub )
626631 const graph = {
632+ parallelTestApp : true ,
627633 testApp : makeSpec ( "testApp" ) ,
628634 components : [ makeSpec ( "A" ) ]
629635 }
0 commit comments