@@ -101,6 +101,7 @@ describe("runs", () => {
101
101
setLocalStub = sandbox . stub ( ) ;
102
102
setLocalIdentifierStub = sandbox . stub ( ) ;
103
103
setHeadedStub = sandbox . stub ( ) ;
104
+ setNoWrapStub = sandbox . stub ( ) ;
104
105
deleteResultsStub = sandbox . stub ( ) ;
105
106
setDefaultsStub = sandbox . stub ( ) ;
106
107
setLocalModeStub = sandbox . stub ( ) ;
@@ -133,6 +134,7 @@ describe("runs", () => {
133
134
setLocal : setLocalStub ,
134
135
setLocalIdentifier : setLocalIdentifierStub ,
135
136
setHeaded : setHeadedStub ,
137
+ setNoWrap : setNoWrapStub ,
136
138
deleteResults : deleteResultsStub ,
137
139
setDefaults : setDefaultsStub ,
138
140
setupLocalTesting : setupLocalTestingStub ,
@@ -169,6 +171,7 @@ describe("runs", () => {
169
171
sinon . assert . calledOnce ( setLocalModeStub ) ;
170
172
sinon . assert . calledOnce ( setLocalConfigFileStub ) ;
171
173
sinon . assert . calledOnce ( setHeadedStub ) ;
174
+ sinon . assert . calledOnce ( setNoWrapStub ) ;
172
175
sinon . assert . calledOnce ( capabilityValidatorStub ) ;
173
176
sinon . assert . calledOnce ( getErrorCodeFromMsgStub ) ;
174
177
sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
@@ -211,6 +214,7 @@ describe("runs", () => {
211
214
setupLocalTestingStub = sandbox . stub ( ) ;
212
215
setLocalIdentifierStub = sandbox . stub ( ) ;
213
216
setHeadedStub = sandbox . stub ( ) ;
217
+ setNoWrapStub = sandbox . stub ( ) ;
214
218
deleteResultsStub = sandbox . stub ( ) ;
215
219
getNumberOfSpecFilesStub = sandbox . stub ( ) . returns ( [ ] ) ;
216
220
setDefaultsStub = sandbox . stub ( ) ;
@@ -245,6 +249,7 @@ describe("runs", () => {
245
249
setupLocalTesting : setupLocalTestingStub ,
246
250
setLocalIdentifier : setLocalIdentifierStub ,
247
251
setHeaded : setHeadedStub ,
252
+ setNoWrap : setNoWrapStub ,
248
253
deleteResults : deleteResultsStub ,
249
254
setDefaults : setDefaultsStub ,
250
255
getNumberOfSpecFiles : getNumberOfSpecFilesStub ,
@@ -284,6 +289,7 @@ describe("runs", () => {
284
289
sinon . assert . calledOnce ( setLocalStub ) ;
285
290
sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
286
291
sinon . assert . calledOnce ( setHeadedStub ) ;
292
+ sinon . assert . calledOnce ( setNoWrapStub ) ;
287
293
sinon . assert . calledOnce ( validateBstackJsonStub ) ;
288
294
sinon . assert . calledOnce ( capabilityValidatorStub ) ;
289
295
sinon . assert . calledOnce ( archiverStub ) ;
@@ -330,6 +336,7 @@ describe("runs", () => {
330
336
setupLocalTestingStub = sandbox . stub ( ) ;
331
337
setLocalIdentifierStub = sandbox . stub ( ) ;
332
338
setHeadedStub = sandbox . stub ( ) ;
339
+ setNoWrapStub = sandbox . stub ( ) ;
333
340
deleteResultsStub = sandbox . stub ( ) ;
334
341
getNumberOfSpecFilesStub = sandbox . stub ( ) . returns ( [ ] ) ;
335
342
setDefaultsStub = sandbox . stub ( ) ;
@@ -364,6 +371,7 @@ describe("runs", () => {
364
371
setupLocalTesting : setupLocalTestingStub ,
365
372
setLocalIdentifier : setLocalIdentifierStub ,
366
373
setHeaded : setHeadedStub ,
374
+ setNoWrap : setNoWrapStub ,
367
375
deleteResults : deleteResultsStub ,
368
376
getNumberOfSpecFiles : getNumberOfSpecFilesStub ,
369
377
setDefaults : setDefaultsStub ,
@@ -403,6 +411,7 @@ describe("runs", () => {
403
411
sinon . assert . calledOnce ( setLocalStub ) ;
404
412
sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
405
413
sinon . assert . calledOnce ( setHeadedStub ) ;
414
+ sinon . assert . calledOnce ( setNoWrapStub ) ;
406
415
sinon . assert . calledOnce ( validateBstackJsonStub ) ;
407
416
sinon . assert . calledOnce ( capabilityValidatorStub ) ;
408
417
sinon . assert . calledOnce ( archiverStub ) ;
@@ -453,6 +462,7 @@ describe("runs", () => {
453
462
setupLocalTestingStub = sandbox . stub ( ) ;
454
463
setLocalIdentifierStub = sandbox . stub ( ) ;
455
464
setHeadedStub = sandbox . stub ( ) ;
465
+ setNoWrapStub = sandbox . stub ( ) ;
456
466
deleteResultsStub = sandbox . stub ( ) ;
457
467
getNumberOfSpecFilesStub = sandbox . stub ( ) . returns ( [ ] ) ;
458
468
setDefaultsStub = sandbox . stub ( ) ;
@@ -488,6 +498,7 @@ describe("runs", () => {
488
498
setupLocalTesting : setupLocalTestingStub ,
489
499
setLocalIdentifier : setLocalIdentifierStub ,
490
500
setHeaded : setHeadedStub ,
501
+ setNoWrap : setNoWrapStub ,
491
502
deleteResults : deleteResultsStub ,
492
503
getNumberOfSpecFiles : getNumberOfSpecFilesStub ,
493
504
setDefaults : setDefaultsStub ,
@@ -538,6 +549,7 @@ describe("runs", () => {
538
549
sinon . assert . calledOnce ( setLocalStub ) ;
539
550
sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
540
551
sinon . assert . calledOnce ( setHeadedStub ) ;
552
+ sinon . assert . calledOnce ( setNoWrapStub ) ;
541
553
sinon . assert . calledOnce ( archiverStub ) ;
542
554
sinon . assert . calledOnce ( setUsageReportingFlagStub ) ;
543
555
sinon . assert . calledOnce ( zipUploadStub ) ;
@@ -593,6 +605,7 @@ describe("runs", () => {
593
605
setupLocalTestingStub = sandbox . stub ( ) ;
594
606
setLocalIdentifierStub = sandbox . stub ( ) ;
595
607
setHeadedStub = sandbox . stub ( ) ;
608
+ setNoWrapStub = sandbox . stub ( ) ;
596
609
getNumberOfSpecFilesStub = sandbox . stub ( ) . returns ( [ ] ) ;
597
610
setLocalConfigFileStub = sandbox . stub ( ) ;
598
611
} ) ;
@@ -626,6 +639,7 @@ describe("runs", () => {
626
639
setupLocalTesting : setupLocalTestingStub ,
627
640
setLocalIdentifier : setLocalIdentifierStub ,
628
641
setHeaded : setHeadedStub ,
642
+ setNoWrap : setNoWrapStub ,
629
643
exportResults : exportResultsStub ,
630
644
deleteResults : deleteResultsStub ,
631
645
setDefaults : setDefaultsStub ,
@@ -679,6 +693,7 @@ describe("runs", () => {
679
693
sinon . assert . calledOnce ( setupLocalTestingStub ) ;
680
694
sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
681
695
sinon . assert . calledOnce ( setHeadedStub ) ;
696
+ sinon . assert . calledOnce ( setNoWrapStub ) ;
682
697
sinon . assert . calledOnce ( archiverStub ) ;
683
698
sinon . assert . calledOnce ( setUsageReportingFlagStub ) ;
684
699
sinon . assert . calledOnce ( zipUploadStub ) ;
0 commit comments