@@ -124,6 +124,7 @@ describe("runs", () => {
124
124
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
125
125
setNodeVersionStub = sandbox . stub ( ) ;
126
126
setBuildTagsStub = sandbox . stub ( ) ;
127
+ setNetworkLogsStub = sandbox . stub ( ) ;
127
128
} ) ;
128
129
129
130
afterEach ( ( ) => {
@@ -170,7 +171,8 @@ describe("runs", () => {
170
171
setRecordCaps : setRecordCapsStub ,
171
172
setDebugMode : setDebugModeStub ,
172
173
setNodeVersion : setNodeVersionStub ,
173
- setBuildTags : setBuildTagsStub
174
+ setBuildTags : setBuildTagsStub ,
175
+ setNetworkLogs : setNetworkLogsStub
174
176
} ,
175
177
'../helpers/capabilityHelper' : {
176
178
validate : capabilityValidatorStub
@@ -221,6 +223,7 @@ describe("runs", () => {
221
223
sinon . assert . calledOnce ( setRecordCapsStub ) ;
222
224
sinon . assert . calledOnce ( setNodeVersionStub ) ;
223
225
sinon . assert . calledOnce ( setBuildTagsStub ) ;
226
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
224
227
sinon . assert . calledOnceWithExactly (
225
228
sendUsageReportStub ,
226
229
bsConfig ,
@@ -284,6 +287,7 @@ describe("runs", () => {
284
287
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
285
288
setNodeVersionStub = sandbox . stub ( ) ;
286
289
setBuildTagsStub = sandbox . stub ( ) ;
290
+ setNetworkLogsStub = sandbox . stub ( ) ;
287
291
} ) ;
288
292
289
293
afterEach ( ( ) => {
@@ -333,7 +337,8 @@ describe("runs", () => {
333
337
setRecordCaps : setRecordCapsStub ,
334
338
setDebugMode : setDebugModeStub ,
335
339
setNodeVersion : setNodeVersionStub ,
336
- setBuildTags : setBuildTagsStub
340
+ setBuildTags : setBuildTagsStub ,
341
+ setNetworkLogs : setNetworkLogsStub
337
342
} ,
338
343
'../helpers/capabilityHelper' : {
339
344
validate : capabilityValidatorStub ,
@@ -403,6 +408,7 @@ describe("runs", () => {
403
408
sinon . assert . calledOnce ( setRecordCapsStub ) ;
404
409
sinon . assert . calledOnce ( setNodeVersionStub ) ;
405
410
sinon . assert . calledOnce ( setBuildTagsStub ) ;
411
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
406
412
sinon . assert . calledOnceWithExactly (
407
413
sendUsageReportStub ,
408
414
bsConfig ,
@@ -468,6 +474,7 @@ describe("runs", () => {
468
474
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
469
475
setNodeVersionStub = sandbox . stub ( ) ;
470
476
setBuildTagsStub = sandbox . stub ( ) ;
477
+ setNetworkLogsStub = sandbox . stub ( ) ;
471
478
} ) ;
472
479
473
480
afterEach ( ( ) => {
@@ -518,7 +525,8 @@ describe("runs", () => {
518
525
setRecordCaps : setRecordCapsStub ,
519
526
setDebugMode : setDebugModeStub ,
520
527
setNodeVersion : setNodeVersionStub ,
521
- setBuildTags : setBuildTagsStub
528
+ setBuildTags : setBuildTagsStub ,
529
+ setNetworkLogs : setNetworkLogsStub
522
530
} ,
523
531
'../helpers/capabilityHelper' : {
524
532
validate : capabilityValidatorStub ,
@@ -590,6 +598,7 @@ describe("runs", () => {
590
598
sinon . assert . calledOnce ( setRecordCapsStub ) ;
591
599
sinon . assert . calledOnce ( setNodeVersionStub ) ;
592
600
sinon . assert . calledOnce ( setBuildTagsStub ) ;
601
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
593
602
sinon . assert . calledOnceWithExactly (
594
603
sendUsageReportStub ,
595
604
bsConfig ,
@@ -660,6 +669,7 @@ describe("runs", () => {
660
669
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
661
670
setNodeVersionStub = sandbox . stub ( ) ;
662
671
setBuildTagsStub = sandbox . stub ( ) ;
672
+ setNetworkLogsStub = sandbox . stub ( ) ;
663
673
} ) ;
664
674
665
675
afterEach ( ( ) => {
@@ -711,7 +721,8 @@ describe("runs", () => {
711
721
setRecordCaps : setRecordCapsStub ,
712
722
setDebugMode : setDebugModeStub ,
713
723
setNodeVersion : setNodeVersionStub ,
714
- setBuildTags : setBuildTagsStub
724
+ setBuildTags : setBuildTagsStub ,
725
+ setNetworkLogs : setNetworkLogsStub
715
726
} ,
716
727
'../helpers/capabilityHelper' : {
717
728
validate : capabilityValidatorStub ,
@@ -793,7 +804,7 @@ describe("runs", () => {
793
804
sinon . assert . calledOnce ( setRecordCapsStub ) ;
794
805
sinon . assert . calledOnce ( setNodeVersionStub ) ;
795
806
sinon . assert . calledOnce ( setBuildTagsStub ) ;
796
-
807
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
797
808
sinon . assert . calledOnceWithExactly (
798
809
sendUsageReportStub ,
799
810
bsConfig ,
@@ -877,6 +888,7 @@ describe("runs", () => {
877
888
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
878
889
setNodeVersionStub = sandbox . stub ( ) ;
879
890
setBuildTagsStub = sandbox . stub ( ) ;
891
+ setNetworkLogsStub = sandbox . stub ( ) ;
880
892
} ) ;
881
893
882
894
afterEach ( ( ) => {
@@ -936,7 +948,8 @@ describe("runs", () => {
936
948
setRecordCaps : setRecordCapsStub ,
937
949
setDebugMode : setDebugModeStub ,
938
950
setNodeVersion : setNodeVersionStub ,
939
- setBuildTags : setBuildTagsStub
951
+ setBuildTags : setBuildTagsStub ,
952
+ setNetworkLogs : setNetworkLogsStub
940
953
} ,
941
954
'../helpers/capabilityHelper' : {
942
955
validate : capabilityValidatorStub ,
@@ -1035,6 +1048,7 @@ describe("runs", () => {
1035
1048
sinon . assert . calledOnce ( setRecordCapsStub ) ;
1036
1049
sinon . assert . calledOnce ( setNodeVersionStub ) ;
1037
1050
sinon . assert . calledOnce ( setBuildTagsStub ) ;
1051
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
1038
1052
sinon . assert . match (
1039
1053
sendUsageReportStub . getCall ( 0 ) . args ,
1040
1054
[
0 commit comments