@@ -191,6 +191,7 @@ describe("runs", () => {
191191 beforeEach ( ( ) => {
192192 sandbox = sinon . createSandbox ( ) ;
193193 setParallelsStub = sandbox . stub ( ) ;
194+ warnSpecLimitStub = sandbox . stub ( ) ;
194195 setUsernameStub = sandbox . stub ( ) ;
195196 setAccessKeyStub = sandbox . stub ( ) ;
196197 getConfigPathStub = sandbox . stub ( ) ;
@@ -232,6 +233,7 @@ describe("runs", () => {
232233 validateBstackJson : validateBstackJsonStub ,
233234 sendUsageReport : sendUsageReportStub ,
234235 setParallels : setParallelsStub ,
236+ warnSpecLimit : warnSpecLimitStub ,
235237 setUsername : setUsernameStub ,
236238 setAccessKey : setAccessKeyStub ,
237239 setBuildName : setBuildNameStub ,
@@ -281,6 +283,7 @@ describe("runs", () => {
281283 sinon . assert . calledOnce ( setCypressConfigFilenameStub ) ;
282284 sinon . assert . calledOnce ( getNumberOfSpecFilesStub ) ;
283285 sinon . assert . calledOnce ( setParallelsStub ) ;
286+ sinon . assert . calledOnce ( warnSpecLimitStub ) ;
284287 sinon . assert . calledOnce ( setLocalStub ) ;
285288 sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
286289 sinon . assert . calledOnce ( setHeadedStub ) ;
@@ -310,6 +313,7 @@ describe("runs", () => {
310313 sandbox = sinon . createSandbox ( ) ;
311314 validateBstackJsonStub = sandbox . stub ( ) ;
312315 setParallelsStub = sandbox . stub ( ) ;
316+ warnSpecLimitStub = sandbox . stub ( ) ;
313317 setUsernameStub = sandbox . stub ( ) ;
314318 setAccessKeyStub = sandbox . stub ( ) ;
315319 setBuildNameStub = sandbox . stub ( ) ;
@@ -351,6 +355,7 @@ describe("runs", () => {
351355 validateBstackJson : validateBstackJsonStub ,
352356 sendUsageReport : sendUsageReportStub ,
353357 setParallels : setParallelsStub ,
358+ warnSpecLimit : warnSpecLimitStub ,
354359 setUsername : setUsernameStub ,
355360 setAccessKey : setAccessKeyStub ,
356361 setBuildName : setBuildNameStub ,
@@ -400,6 +405,7 @@ describe("runs", () => {
400405 sinon . assert . calledOnce ( setLocalConfigFileStub ) ;
401406 sinon . assert . calledOnce ( getNumberOfSpecFilesStub ) ;
402407 sinon . assert . calledOnce ( setParallelsStub ) ;
408+ sinon . assert . calledOnce ( warnSpecLimitStub ) ;
403409 sinon . assert . calledOnce ( setLocalStub ) ;
404410 sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
405411 sinon . assert . calledOnce ( setHeadedStub ) ;
@@ -432,6 +438,7 @@ describe("runs", () => {
432438 sandbox = sinon . createSandbox ( ) ;
433439 validateBstackJsonStub = sandbox . stub ( ) ;
434440 setParallelsStub = sandbox . stub ( ) ;
441+ warnSpecLimitStub = sandbox . stub ( ) ;
435442 setUsernameStub = sandbox . stub ( ) ;
436443 setAccessKeyStub = sandbox . stub ( ) ;
437444 setBuildNameStub = sandbox . stub ( ) ;
@@ -475,6 +482,7 @@ describe("runs", () => {
475482 validateBstackJson : validateBstackJsonStub ,
476483 sendUsageReport : sendUsageReportStub ,
477484 setParallels : setParallelsStub ,
485+ warnSpecLimit : warnSpecLimitStub ,
478486 setUsername : setUsernameStub ,
479487 setAccessKey : setAccessKeyStub ,
480488 setBuildName : setBuildNameStub ,
@@ -535,6 +543,7 @@ describe("runs", () => {
535543 sinon . assert . calledOnce ( capabilityValidatorStub ) ;
536544 sinon . assert . calledOnce ( getNumberOfSpecFilesStub ) ;
537545 sinon . assert . calledOnce ( setParallelsStub ) ;
546+ sinon . assert . calledOnce ( warnSpecLimitStub ) ;
538547 sinon . assert . calledOnce ( setLocalStub ) ;
539548 sinon . assert . calledOnce ( setLocalIdentifierStub ) ;
540549 sinon . assert . calledOnce ( setHeadedStub ) ;
@@ -567,6 +576,7 @@ describe("runs", () => {
567576 sandbox = sinon . createSandbox ( ) ;
568577 validateBstackJsonStub = sandbox . stub ( ) ;
569578 setParallelsStub = sandbox . stub ( ) ;
579+ warnSpecLimitStub = sandbox . stub ( )
570580 setUsernameStub = sandbox . stub ( ) ;
571581 setAccessKeyStub = sandbox . stub ( ) ;
572582 setBuildNameStub = sandbox . stub ( ) ;
@@ -620,6 +630,7 @@ describe("runs", () => {
620630 setTestEnvs : setTestEnvsStub ,
621631 setUsageReportingFlag : setUsageReportingFlagStub ,
622632 setParallels : setParallelsStub ,
633+ warnSpecLimit : warnSpecLimitStub ,
623634 getConfigPath : getConfigPathStub ,
624635 setLocal : setLocalStub ,
625636 setLocalMode : setLocalModeStub ,
@@ -674,6 +685,7 @@ describe("runs", () => {
674685 sinon . assert . calledOnce ( capabilityValidatorStub ) ;
675686 sinon . assert . calledOnce ( getNumberOfSpecFilesStub ) ;
676687 sinon . assert . calledOnce ( setParallelsStub ) ;
688+ sinon . assert . calledOnce ( warnSpecLimitStub ) ;
677689 sinon . assert . calledOnce ( setLocalStub ) ;
678690 sinon . assert . calledOnce ( setLocalModeStub ) ;
679691 sinon . assert . calledOnce ( setupLocalTestingStub ) ;
0 commit comments