Skip to content

Commit 644ff64

Browse files
committed
adding specs and env stubs
1 parent 6337ead commit 644ff64

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

test/unit/bin/commands/runs.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ describe("runs", () => {
8282
setUsernameStub = sandbox.stub();
8383
setAccessKeyStub = sandbox.stub();
8484
setBuildNameStub = sandbox.stub();
85+
setUserSpecsStub = sandbox.stub();
86+
setTestEnvsStub = sandbox.stub();
8587
getConfigPathStub = sandbox.stub();
8688
setUsageReportingFlagStub = sandbox.stub().returns(undefined);
8789
sendUsageReportStub = sandbox.stub().callsFake(function () {
@@ -153,6 +155,8 @@ describe("runs", () => {
153155
setAccessKeyStub = sandbox.stub();
154156
getConfigPathStub = sandbox.stub();
155157
setBuildNameStub = sandbox.stub();
158+
setUserSpecsStub = sandbox.stub();
159+
setTestEnvsStub = sandbox.stub();
156160
validateBstackJsonStub = sandbox.stub();
157161
setUsageReportingFlagStub = sandbox.stub().returns(undefined);
158162
sendUsageReportStub = sandbox.stub().callsFake(function () {
@@ -234,6 +238,8 @@ describe("runs", () => {
234238
setUsernameStub = sandbox.stub();
235239
setAccessKeyStub = sandbox.stub();
236240
setBuildNameStub = sandbox.stub();
241+
setUserSpecsStub = sandbox.stub();
242+
setTestEnvsStub = sandbox.stub();
237243
getConfigPathStub = sandbox.stub();
238244
setUsageReportingFlagStub = sandbox.stub().returns(undefined);
239245
sendUsageReportStub = sandbox.stub().callsFake(function () {
@@ -324,6 +330,8 @@ describe("runs", () => {
324330
setUsernameStub = sandbox.stub();
325331
setAccessKeyStub = sandbox.stub();
326332
setBuildNameStub = sandbox.stub();
333+
setUserSpecsStub = sandbox.stub();
334+
setTestEnvsStub = sandbox.stub();
327335
getConfigPathStub = sandbox.stub();
328336
setUsageReportingFlagStub = sandbox.stub().returns(undefined);
329337
sendUsageReportStub = sandbox.stub().callsFake(function () {
@@ -425,6 +433,8 @@ describe("runs", () => {
425433
setUsernameStub = sandbox.stub();
426434
setAccessKeyStub = sandbox.stub();
427435
setBuildNameStub = sandbox.stub();
436+
setUserSpecsStub = sandbox.stub();
437+
setTestEnvsStub = sandbox.stub();
428438
getConfigPathStub = sandbox.stub();
429439
setUsageReportingFlagStub = sandbox.stub().returns(undefined);
430440
sendUsageReportStub = sandbox.stub().callsFake(function () {

0 commit comments

Comments
 (0)