@@ -94,6 +94,7 @@ describe("runs", () => {
94
94
setAccessKeyStub = sandbox . stub ( ) ;
95
95
setBuildNameStub = sandbox . stub ( ) ;
96
96
setCypressConfigFilenameStub = sandbox . stub ( ) ;
97
+ setCypressTestSuiteTypeStub = sandbox . stub ( ) ;
97
98
setUserSpecsStub = sandbox . stub ( ) ;
98
99
setTestEnvsStub = sandbox . stub ( ) ;
99
100
setSystemEnvsStub = sandbox . stub ( ) ;
@@ -145,6 +146,7 @@ describe("runs", () => {
145
146
setAccessKey : setAccessKeyStub ,
146
147
setBuildName : setBuildNameStub ,
147
148
setCypressConfigFilename : setCypressConfigFilenameStub ,
149
+ setCypressTestSuiteType : setCypressTestSuiteTypeStub ,
148
150
setUserSpecs : setUserSpecsStub ,
149
151
setTestEnvs : setTestEnvsStub ,
150
152
getConfigPath : getConfigPathStub ,
@@ -197,6 +199,7 @@ describe("runs", () => {
197
199
sinon . assert . calledOnce ( setAccessKeyStub ) ;
198
200
sinon . assert . calledOnce ( setBuildNameStub ) ;
199
201
sinon . assert . calledOnce ( setCypressConfigFilenameStub ) ;
202
+ sinon . assert . calledOnce ( setCypressTestSuiteTypeStub ) ;
200
203
sinon . assert . calledOnce ( setUserSpecsStub ) ;
201
204
sinon . assert . calledOnce ( setTestEnvsStub ) ;
202
205
sinon . assert . calledOnce ( setSystemEnvsStub ) ;
@@ -245,6 +248,7 @@ describe("runs", () => {
245
248
getConfigPathStub = sandbox . stub ( ) ;
246
249
setBuildNameStub = sandbox . stub ( ) ;
247
250
setCypressConfigFilenameStub = sandbox . stub ( ) ;
251
+ setCypressTestSuiteTypeStub = sandbox . stub ( ) ;
248
252
setUserSpecsStub = sandbox . stub ( ) ;
249
253
setTestEnvsStub = sandbox . stub ( ) ;
250
254
setSystemEnvsStub = sandbox . stub ( ) ;
@@ -303,6 +307,7 @@ describe("runs", () => {
303
307
setAccessKey : setAccessKeyStub ,
304
308
setBuildName : setBuildNameStub ,
305
309
setCypressConfigFilename : setCypressConfigFilenameStub ,
310
+ setCypressTestSuiteType : setCypressTestSuiteTypeStub ,
306
311
setUserSpecs : setUserSpecsStub ,
307
312
setTestEnvs : setTestEnvsStub ,
308
313
setUsageReportingFlag : setUsageReportingFlagStub ,
@@ -372,6 +377,7 @@ describe("runs", () => {
372
377
sinon . assert . calledOnce ( setBuildNameStub ) ;
373
378
sinon . assert . calledOnce ( setLocalConfigFileStub ) ;
374
379
sinon . assert . calledOnce ( setCypressConfigFilenameStub ) ;
380
+ sinon . assert . calledOnce ( setCypressTestSuiteTypeStub ) ;
375
381
sinon . assert . calledOnce ( getNumberOfSpecFilesStub ) ;
376
382
sinon . assert . calledOnce ( getParallelsStub ) ;
377
383
sinon . assert . calledOnce ( setParallelsStub ) ;
@@ -424,6 +430,7 @@ describe("runs", () => {
424
430
setAccessKeyStub = sandbox . stub ( ) ;
425
431
setBuildNameStub = sandbox . stub ( ) ;
426
432
setCypressConfigFilenameStub = sandbox . stub ( ) ;
433
+ setCypressTestSuiteTypeStub = sandbox . stub ( ) ;
427
434
setUserSpecsStub = sandbox . stub ( ) ;
428
435
setTestEnvsStub = sandbox . stub ( ) ;
429
436
setSystemEnvsStub = sandbox . stub ( ) ;
@@ -484,6 +491,7 @@ describe("runs", () => {
484
491
setAccessKey : setAccessKeyStub ,
485
492
setBuildName : setBuildNameStub ,
486
493
setCypressConfigFilename : setCypressConfigFilenameStub ,
494
+ setCypressTestSuiteType : setCypressTestSuiteTypeStub ,
487
495
setUserSpecs : setUserSpecsStub ,
488
496
setTestEnvs : setTestEnvsStub ,
489
497
setSystemEnvs : setSystemEnvsStub ,
@@ -558,6 +566,7 @@ describe("runs", () => {
558
566
sinon . assert . calledOnce ( setLocalModeStub ) ;
559
567
sinon . assert . calledOnce ( setLocalConfigFileStub ) ;
560
568
sinon . assert . calledOnce ( getNumberOfSpecFilesStub ) ;
569
+ sinon . assert . calledOnce ( setCypressTestSuiteTypeStub ) ;
561
570
sinon . assert . calledOnce ( getParallelsStub ) ;
562
571
sinon . assert . calledOnce ( setParallelsStub ) ;
563
572
sinon . assert . calledOnce ( warnSpecLimitStub ) ;
@@ -611,6 +620,7 @@ describe("runs", () => {
611
620
setAccessKeyStub = sandbox . stub ( ) ;
612
621
setBuildNameStub = sandbox . stub ( ) ;
613
622
setCypressConfigFilenameStub = sandbox . stub ( ) ;
623
+ setCypressTestSuiteTypeStub = sandbox . stub ( ) ;
614
624
setUserSpecsStub = sandbox . stub ( ) ;
615
625
setTestEnvsStub = sandbox . stub ( ) ;
616
626
setSystemEnvsStub = sandbox . stub ( ) ;
@@ -673,6 +683,7 @@ describe("runs", () => {
673
683
setAccessKey : setAccessKeyStub ,
674
684
setBuildName : setBuildNameStub ,
675
685
setCypressConfigFilename : setCypressConfigFilenameStub ,
686
+ setCypressTestSuiteType : setCypressTestSuiteTypeStub ,
676
687
setUserSpecs : setUserSpecsStub ,
677
688
setTestEnvs : setTestEnvsStub ,
678
689
setSystemEnvs : setSystemEnvsStub ,
@@ -812,6 +823,7 @@ describe("runs", () => {
812
823
setBuildNameStub = sandbox . stub ( ) ;
813
824
generateUniqueHashStub = sandbox . stub ( ) . returns ( 'random_hash' ) ;
814
825
setCypressConfigFilenameStub = sandbox . stub ( ) ;
826
+ setCypressTestSuiteTypeStub = sandbox . stub ( ) ;
815
827
setUserSpecsStub = sandbox . stub ( ) ;
816
828
setTestEnvsStub = sandbox . stub ( ) ;
817
829
setSystemEnvsStub = sandbox . stub ( ) ;
@@ -887,6 +899,7 @@ describe("runs", () => {
887
899
setAccessKey : setAccessKeyStub ,
888
900
setBuildName : setBuildNameStub ,
889
901
setCypressConfigFilename : setCypressConfigFilenameStub ,
902
+ setCypressTestSuiteType : setCypressTestSuiteTypeStub ,
890
903
setUserSpecs : setUserSpecsStub ,
891
904
setTestEnvs : setTestEnvsStub ,
892
905
setSystemEnvs : setSystemEnvsStub ,
@@ -993,6 +1006,7 @@ describe("runs", () => {
993
1006
sinon . assert . calledOnce ( setLocalConfigFileStub ) ;
994
1007
sinon . assert . calledOnce ( capabilityValidatorStub ) ;
995
1008
sinon . assert . calledOnce ( getNumberOfSpecFilesStub ) ;
1009
+ sinon . assert . calledOnce ( setCypressTestSuiteTypeStub ) ;
996
1010
sinon . assert . calledOnce ( getParallelsStub ) ;
997
1011
sinon . assert . calledOnce ( setParallelsStub ) ;
998
1012
sinon . assert . calledOnce ( warnSpecLimitStub ) ;
0 commit comments