@@ -122,6 +122,7 @@ describe("runs", () => {
122122 setSpecTimeoutStub = sandbox . stub ( ) . returns ( undefined ) ;
123123 setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
124124 setNodeVersionStub = sandbox . stub ( ) ;
125+ setBuildTagsStub = sandbox . stub ( ) ;
125126 } ) ;
126127
127128 afterEach ( ( ) => {
@@ -166,7 +167,8 @@ describe("runs", () => {
166167 setSpecTimeout : setSpecTimeoutStub ,
167168 setRecordCaps : setRecordCapsStub ,
168169 setDebugMode : setDebugModeStub ,
169- setNodeVersion : setNodeVersionStub
170+ setNodeVersion : setNodeVersionStub ,
171+ setBuildTags : setBuildTagsStub
170172 } ,
171173 '../helpers/capabilityHelper' : {
172174 validate : capabilityValidatorStub
@@ -215,6 +217,7 @@ describe("runs", () => {
215217 sinon . assert . calledOnce ( getInitialDetailsStub ) ;
216218 sinon . assert . calledOnce ( setRecordCapsStub ) ;
217219 sinon . assert . calledOnce ( setNodeVersionStub ) ;
220+ sinon . assert . calledOnce ( setBuildTagsStub ) ;
218221 sinon . assert . calledOnceWithExactly (
219222 sendUsageReportStub ,
220223 bsConfig ,
@@ -276,6 +279,7 @@ describe("runs", () => {
276279 setSpecTimeoutStub = sandbox . stub ( ) . returns ( undefined ) ;
277280 setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
278281 setNodeVersionStub = sandbox . stub ( ) ;
282+ setBuildTagsStub = sandbox . stub ( ) ;
279283 } ) ;
280284
281285 afterEach ( ( ) => {
@@ -323,7 +327,8 @@ describe("runs", () => {
323327 setSpecTimeout : setSpecTimeoutStub ,
324328 setRecordCaps : setRecordCapsStub ,
325329 setDebugMode : setDebugModeStub ,
326- setNodeVersion : setNodeVersionStub
330+ setNodeVersion : setNodeVersionStub ,
331+ setBuildTags : setBuildTagsStub
327332 } ,
328333 '../helpers/capabilityHelper' : {
329334 validate : capabilityValidatorStub ,
@@ -391,6 +396,7 @@ describe("runs", () => {
391396 sinon . assert . calledOnce ( getInitialDetailsStub ) ;
392397 sinon . assert . calledOnce ( setRecordCapsStub ) ;
393398 sinon . assert . calledOnce ( setNodeVersionStub ) ;
399+ sinon . assert . calledOnce ( setBuildTagsStub ) ;
394400 sinon . assert . calledOnceWithExactly (
395401 sendUsageReportStub ,
396402 bsConfig ,
@@ -454,6 +460,7 @@ describe("runs", () => {
454460 getInitialDetailsStub = sandbox . stub ( ) ;
455461 setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
456462 setNodeVersionStub = sandbox . stub ( ) ;
463+ setBuildTagsStub = sandbox . stub ( ) ;
457464 } ) ;
458465
459466 afterEach ( ( ) => {
@@ -502,7 +509,8 @@ describe("runs", () => {
502509 setSpecTimeout : setSpecTimeoutStub ,
503510 setRecordCaps : setRecordCapsStub ,
504511 setDebugMode : setDebugModeStub ,
505- setNodeVersion : setNodeVersionStub
512+ setNodeVersion : setNodeVersionStub ,
513+ setBuildTags : setBuildTagsStub
506514 } ,
507515 '../helpers/capabilityHelper' : {
508516 validate : capabilityValidatorStub ,
@@ -572,6 +580,7 @@ describe("runs", () => {
572580 sinon . assert . calledOnce ( getInitialDetailsStub ) ;
573581 sinon . assert . calledOnce ( setRecordCapsStub ) ;
574582 sinon . assert . calledOnce ( setNodeVersionStub ) ;
583+ sinon . assert . calledOnce ( setBuildTagsStub ) ;
575584 sinon . assert . calledOnceWithExactly (
576585 sendUsageReportStub ,
577586 bsConfig ,
@@ -640,6 +649,7 @@ describe("runs", () => {
640649 getInitialDetailsStub = sandbox . stub ( ) ;
641650 setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
642651 setNodeVersionStub = sandbox . stub ( ) ;
652+ setBuildTagsStub = sandbox . stub ( ) ;
643653 } ) ;
644654
645655 afterEach ( ( ) => {
@@ -690,6 +700,7 @@ describe("runs", () => {
690700 setRecordCaps : setRecordCapsStub ,
691701 setDebugMode : setDebugModeStub ,
692702 setNodeVersion : setNodeVersionStub ,
703+ setBuildTags : setBuildTagsStub
693704 } ,
694705 '../helpers/capabilityHelper' : {
695706 validate : capabilityValidatorStub ,
@@ -770,6 +781,7 @@ describe("runs", () => {
770781 sinon . assert . calledOnce ( getInitialDetailsStub ) ;
771782 sinon . assert . calledOnce ( setRecordCapsStub ) ;
772783 sinon . assert . calledOnce ( setNodeVersionStub ) ;
784+ sinon . assert . calledOnce ( setBuildTagsStub ) ;
773785
774786 sinon . assert . calledOnceWithExactly (
775787 sendUsageReportStub ,
@@ -852,6 +864,7 @@ describe("runs", () => {
852864 getInitialDetailsStub = sandbox . stub ( ) ;
853865 setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
854866 setNodeVersionStub = sandbox . stub ( ) ;
867+ setBuildTagsStub = sandbox . stub ( ) ;
855868 } ) ;
856869
857870 afterEach ( ( ) => {
@@ -910,6 +923,7 @@ describe("runs", () => {
910923 setRecordCaps : setRecordCapsStub ,
911924 setDebugMode : setDebugModeStub ,
912925 setNodeVersion : setNodeVersionStub ,
926+ setBuildTags : setBuildTagsStub
913927 } ,
914928 '../helpers/capabilityHelper' : {
915929 validate : capabilityValidatorStub ,
@@ -1006,6 +1020,7 @@ describe("runs", () => {
10061020 sinon . assert . calledOnce ( getInitialDetailsStub ) ;
10071021 sinon . assert . calledOnce ( setRecordCapsStub ) ;
10081022 sinon . assert . calledOnce ( setNodeVersionStub ) ;
1023+ sinon . assert . calledOnce ( setBuildTagsStub ) ;
10091024 sinon . assert . match (
10101025 sendUsageReportStub . getCall ( 0 ) . args ,
10111026 [
0 commit comments