@@ -116,6 +116,7 @@ describe("runs", () => {
116116 setConfigStub = sandbox . stub ( ) ;
117117 setCLIModeStub = sandbox . stub ( ) ;
118118 setGeolocationStub = sandbox . stub ( ) ;
119+ setSpecTimeoutStub = sandbox . stub ( ) . returns ( undefined ) ;
119120 } ) ;
120121
121122 afterEach ( ( ) => {
@@ -156,7 +157,8 @@ describe("runs", () => {
156157 setBrowsers : setBrowsersStub ,
157158 setConfig : setConfigStub ,
158159 setCLIMode : setCLIModeStub ,
159- setGeolocation : setGeolocationStub
160+ setGeolocation : setGeolocationStub ,
161+ setSpecTimeout : setSpecTimeoutStub
160162 } ,
161163 '../helpers/capabilityHelper' : {
162164 validate : capabilityValidatorStub
@@ -197,6 +199,7 @@ describe("runs", () => {
197199 sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
198200 sinon . assert . calledOnce ( setUsageReportingFlagStub ) ;
199201 sinon . assert . calledOnce ( setGeolocationStub ) ;
202+ sinon . assert . calledOnce ( setSpecTimeoutStub ) ;
200203 sinon . assert . calledOnceWithExactly (
201204 sendUsageReportStub ,
202205 bsConfig ,
@@ -254,6 +257,7 @@ describe("runs", () => {
254257 setCLIModeStub = sandbox . stub ( ) ;
255258 setGeolocationStub = sandbox . stub ( ) ;
256259 getVideoConfigStub = sandbox . stub ( ) ;
260+ setSpecTimeoutStub = sandbox . stub ( ) . returns ( undefined ) ;
257261 } ) ;
258262
259263 afterEach ( ( ) => {
@@ -298,6 +302,7 @@ describe("runs", () => {
298302 setCLIMode : setCLIModeStub ,
299303 setGeolocation : setGeolocationStub ,
300304 getVideoConfig : getVideoConfigStub ,
305+ setSpecTimeout : setSpecTimeoutStub
301306 } ,
302307 '../helpers/capabilityHelper' : {
303308 validate : capabilityValidatorStub ,
@@ -357,6 +362,7 @@ describe("runs", () => {
357362 sinon . assert . calledOnce ( setDefaultsStub ) ;
358363 sinon . assert . calledOnce ( setSystemEnvsStub ) ;
359364 sinon . assert . calledOnce ( setGeolocationStub ) ;
365+ sinon . assert . calledOnce ( setSpecTimeoutStub ) ;
360366 sinon . assert . calledOnceWithExactly (
361367 sendUsageReportStub ,
362368 bsConfig ,
@@ -416,6 +422,7 @@ describe("runs", () => {
416422 fetchZipSizeStub = sandbox . stub ( ) ;
417423 setGeolocationStub = sandbox . stub ( ) ;
418424 getVideoConfigStub = sandbox . stub ( ) ;
425+ setSpecTimeoutStub = sandbox . stub ( ) . returns ( undefined ) ;
419426 } ) ;
420427
421428 afterEach ( ( ) => {
@@ -461,6 +468,7 @@ describe("runs", () => {
461468 fetchZipSize : fetchZipSizeStub ,
462469 setGeolocation : setGeolocationStub ,
463470 getVideoConfig : getVideoConfigStub ,
471+ setSpecTimeout : setSpecTimeoutStub
464472 } ,
465473 '../helpers/capabilityHelper' : {
466474 validate : capabilityValidatorStub ,
@@ -522,6 +530,7 @@ describe("runs", () => {
522530 sinon . assert . calledOnce ( setDefaultsStub ) ;
523531 sinon . assert . calledOnce ( setSystemEnvsStub ) ;
524532 sinon . assert . calledOnce ( setGeolocationStub ) ;
533+ sinon . assert . calledOnce ( setSpecTimeoutStub ) ;
525534 sinon . assert . calledOnceWithExactly (
526535 sendUsageReportStub ,
527536 bsConfig ,
@@ -586,6 +595,7 @@ describe("runs", () => {
586595 fetchZipSizeStub = sandbox . stub ( ) ;
587596 setGeolocationStub = sandbox . stub ( ) ;
588597 getVideoConfigStub = sandbox . stub ( ) ;
598+ setSpecTimeoutStub = sandbox . stub ( ) . returns ( undefined ) ;
589599 } ) ;
590600
591601 afterEach ( ( ) => {
@@ -632,6 +642,7 @@ describe("runs", () => {
632642 fetchZipSize : fetchZipSizeStub ,
633643 setGeolocation : setGeolocationStub ,
634644 getVideoConfig : getVideoConfigStub ,
645+ setSpecTimeout : setSpecTimeoutStub
635646 } ,
636647 '../helpers/capabilityHelper' : {
637648 validate : capabilityValidatorStub ,
@@ -704,6 +715,7 @@ describe("runs", () => {
704715 sinon . assert . calledOnce ( setDefaultsStub ) ;
705716 sinon . assert . calledOnce ( setSystemEnvsStub ) ;
706717 sinon . assert . calledOnce ( setGeolocationStub ) ;
718+ sinon . assert . calledOnce ( setSpecTimeoutStub ) ;
707719
708720 sinon . assert . calledOnceWithExactly (
709721 sendUsageReportStub ,
@@ -782,6 +794,7 @@ describe("runs", () => {
782794 fetchZipSizeStub = sandbox . stub ( ) ;
783795 setGeolocationStub = sandbox . stub ( ) ;
784796 getVideoConfigStub = sandbox . stub ( ) ;
797+ setSpecTimeoutStub = sandbox . stub ( ) . returns ( undefined ) ;
785798 } ) ;
786799
787800 afterEach ( ( ) => {
@@ -836,6 +849,7 @@ describe("runs", () => {
836849 fetchZipSize : fetchZipSizeStub ,
837850 setGeolocation : setGeolocationStub ,
838851 getVideoConfig : getVideoConfigStub ,
852+ setSpecTimeout : setSpecTimeoutStub
839853 } ,
840854 '../helpers/capabilityHelper' : {
841855 validate : capabilityValidatorStub ,
0 commit comments