@@ -21,6 +21,7 @@ describe("runs", () => {
21
21
22
22
beforeEach ( ( ) => {
23
23
sandbox = sinon . createSandbox ( ) ;
24
+ setDebugModeStub = sandbox . stub ( ) ;
24
25
validateBstackJsonStub = sandbox . stub ( ) ;
25
26
getConfigPathStub = sandbox . stub ( ) ;
26
27
setUsageReportingFlagStub = sandbox . stub ( ) . returns ( undefined ) ;
@@ -50,7 +51,8 @@ describe("runs", () => {
50
51
setUsageReportingFlag : setUsageReportingFlagStub ,
51
52
getConfigPath : getConfigPathStub ,
52
53
deleteResults : deleteResultsStub ,
53
- readBsConfigJSON : readBsConfigJSONStub
54
+ readBsConfigJSON : readBsConfigJSONStub ,
55
+ setDebugMode : setDebugModeStub
54
56
} ,
55
57
} ) ;
56
58
@@ -158,7 +160,8 @@ describe("runs", () => {
158
160
setConfig : setConfigStub ,
159
161
setCLIMode : setCLIModeStub ,
160
162
setGeolocation : setGeolocationStub ,
161
- setSpecTimeout : setSpecTimeoutStub
163
+ setSpecTimeout : setSpecTimeoutStub ,
164
+ setDebugMode : setDebugModeStub
162
165
} ,
163
166
'../helpers/capabilityHelper' : {
164
167
validate : capabilityValidatorStub
@@ -302,7 +305,8 @@ describe("runs", () => {
302
305
setCLIMode : setCLIModeStub ,
303
306
setGeolocation : setGeolocationStub ,
304
307
getVideoConfig : getVideoConfigStub ,
305
- setSpecTimeout : setSpecTimeoutStub
308
+ setSpecTimeout : setSpecTimeoutStub ,
309
+ setDebugMode : setDebugModeStub
306
310
} ,
307
311
'../helpers/capabilityHelper' : {
308
312
validate : capabilityValidatorStub ,
@@ -468,7 +472,8 @@ describe("runs", () => {
468
472
fetchZipSize : fetchZipSizeStub ,
469
473
setGeolocation : setGeolocationStub ,
470
474
getVideoConfig : getVideoConfigStub ,
471
- setSpecTimeout : setSpecTimeoutStub
475
+ setSpecTimeout : setSpecTimeoutStub ,
476
+ setDebugMode : setDebugModeStub
472
477
} ,
473
478
'../helpers/capabilityHelper' : {
474
479
validate : capabilityValidatorStub ,
@@ -642,7 +647,8 @@ describe("runs", () => {
642
647
fetchZipSize : fetchZipSizeStub ,
643
648
setGeolocation : setGeolocationStub ,
644
649
getVideoConfig : getVideoConfigStub ,
645
- setSpecTimeout : setSpecTimeoutStub
650
+ setSpecTimeout : setSpecTimeoutStub ,
651
+ setDebugMode : setDebugModeStub
646
652
} ,
647
653
'../helpers/capabilityHelper' : {
648
654
validate : capabilityValidatorStub ,
@@ -849,7 +855,8 @@ describe("runs", () => {
849
855
fetchZipSize : fetchZipSizeStub ,
850
856
setGeolocation : setGeolocationStub ,
851
857
getVideoConfig : getVideoConfigStub ,
852
- setSpecTimeout : setSpecTimeoutStub
858
+ setSpecTimeout : setSpecTimeoutStub ,
859
+ setDebugMode : setDebugModeStub
853
860
} ,
854
861
'../helpers/capabilityHelper' : {
855
862
validate : capabilityValidatorStub ,
0 commit comments