@@ -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
@@ -220,6 +222,7 @@ describe("runs", () => {
220
222
sinon . assert . calledOnce ( getInitialDetailsStub ) ;
221
223
sinon . assert . calledOnce ( setNodeVersionStub ) ;
222
224
sinon . assert . calledOnce ( setBuildTagsStub ) ;
225
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
223
226
sinon . assert . calledOnceWithExactly (
224
227
sendUsageReportStub ,
225
228
bsConfig ,
@@ -283,6 +286,7 @@ describe("runs", () => {
283
286
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
284
287
setNodeVersionStub = sandbox . stub ( ) ;
285
288
setBuildTagsStub = sandbox . stub ( ) ;
289
+ setNetworkLogsStub = sandbox . stub ( ) ;
286
290
} ) ;
287
291
288
292
afterEach ( ( ) => {
@@ -332,7 +336,8 @@ describe("runs", () => {
332
336
setRecordCaps : setRecordCapsStub ,
333
337
setDebugMode : setDebugModeStub ,
334
338
setNodeVersion : setNodeVersionStub ,
335
- setBuildTags : setBuildTagsStub
339
+ setBuildTags : setBuildTagsStub ,
340
+ setNetworkLogs : setNetworkLogsStub
336
341
} ,
337
342
'../helpers/capabilityHelper' : {
338
343
validate : capabilityValidatorStub ,
@@ -402,6 +407,7 @@ describe("runs", () => {
402
407
sinon . assert . calledOnce ( setRecordCapsStub ) ;
403
408
sinon . assert . calledOnce ( setNodeVersionStub ) ;
404
409
sinon . assert . calledOnce ( setBuildTagsStub ) ;
410
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
405
411
sinon . assert . calledOnceWithExactly (
406
412
sendUsageReportStub ,
407
413
bsConfig ,
@@ -467,6 +473,7 @@ describe("runs", () => {
467
473
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
468
474
setNodeVersionStub = sandbox . stub ( ) ;
469
475
setBuildTagsStub = sandbox . stub ( ) ;
476
+ setNetworkLogsStub = sandbox . stub ( ) ;
470
477
} ) ;
471
478
472
479
afterEach ( ( ) => {
@@ -517,7 +524,8 @@ describe("runs", () => {
517
524
setRecordCaps : setRecordCapsStub ,
518
525
setDebugMode : setDebugModeStub ,
519
526
setNodeVersion : setNodeVersionStub ,
520
- setBuildTags : setBuildTagsStub
527
+ setBuildTags : setBuildTagsStub ,
528
+ setNetworkLogs : setNetworkLogsStub
521
529
} ,
522
530
'../helpers/capabilityHelper' : {
523
531
validate : capabilityValidatorStub ,
@@ -589,6 +597,7 @@ describe("runs", () => {
589
597
sinon . assert . calledOnce ( setRecordCapsStub ) ;
590
598
sinon . assert . calledOnce ( setNodeVersionStub ) ;
591
599
sinon . assert . calledOnce ( setBuildTagsStub ) ;
600
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
592
601
sinon . assert . calledOnceWithExactly (
593
602
sendUsageReportStub ,
594
603
bsConfig ,
@@ -659,6 +668,7 @@ describe("runs", () => {
659
668
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
660
669
setNodeVersionStub = sandbox . stub ( ) ;
661
670
setBuildTagsStub = sandbox . stub ( ) ;
671
+ setNetworkLogsStub = sandbox . stub ( ) ;
662
672
} ) ;
663
673
664
674
afterEach ( ( ) => {
@@ -710,7 +720,8 @@ describe("runs", () => {
710
720
setRecordCaps : setRecordCapsStub ,
711
721
setDebugMode : setDebugModeStub ,
712
722
setNodeVersion : setNodeVersionStub ,
713
- setBuildTags : setBuildTagsStub
723
+ setBuildTags : setBuildTagsStub ,
724
+ setNetworkLogs : setNetworkLogsStub
714
725
} ,
715
726
'../helpers/capabilityHelper' : {
716
727
validate : capabilityValidatorStub ,
@@ -792,7 +803,7 @@ describe("runs", () => {
792
803
sinon . assert . calledOnce ( setRecordCapsStub ) ;
793
804
sinon . assert . calledOnce ( setNodeVersionStub ) ;
794
805
sinon . assert . calledOnce ( setBuildTagsStub ) ;
795
-
806
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
796
807
sinon . assert . calledOnceWithExactly (
797
808
sendUsageReportStub ,
798
809
bsConfig ,
@@ -876,6 +887,7 @@ describe("runs", () => {
876
887
setRecordCapsStub = sandbox . stub ( ) . returns ( undefined ) ;
877
888
setNodeVersionStub = sandbox . stub ( ) ;
878
889
setBuildTagsStub = sandbox . stub ( ) ;
890
+ setNetworkLogsStub = sandbox . stub ( ) ;
879
891
} ) ;
880
892
881
893
afterEach ( ( ) => {
@@ -935,7 +947,8 @@ describe("runs", () => {
935
947
setRecordCaps : setRecordCapsStub ,
936
948
setDebugMode : setDebugModeStub ,
937
949
setNodeVersion : setNodeVersionStub ,
938
- setBuildTags : setBuildTagsStub
950
+ setBuildTags : setBuildTagsStub ,
951
+ setNetworkLogs : setNetworkLogsStub
939
952
} ,
940
953
'../helpers/capabilityHelper' : {
941
954
validate : capabilityValidatorStub ,
@@ -1034,6 +1047,7 @@ describe("runs", () => {
1034
1047
sinon . assert . calledOnce ( setRecordCapsStub ) ;
1035
1048
sinon . assert . calledOnce ( setNodeVersionStub ) ;
1036
1049
sinon . assert . calledOnce ( setBuildTagsStub ) ;
1050
+ sinon . assert . calledOnce ( setNetworkLogsStub ) ;
1037
1051
sinon . assert . match (
1038
1052
sendUsageReportStub . getCall ( 0 ) . args ,
1039
1053
[
0 commit comments