Skip to content

Commit 7955948

Browse files
Roshan NikamRoshan Nikam
authored andcommitted
corrected failing spec after changes
1 parent 7727086 commit 7955948

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/unit/bin/commands/runs.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ describe("runs", () => {
2828
});
2929
getErrorCodeFromErrStub = sandbox.stub().returns("random-error-code");
3030
deleteResultsStub = sandbox.stub();
31+
readBsConfigJSONStub = sandbox.stub().returns(null);
3132
});
3233

3334
afterEach(() => {
@@ -47,7 +48,8 @@ describe("runs", () => {
4748
sendUsageReport: sendUsageReportStub,
4849
setUsageReportingFlag: setUsageReportingFlagStub,
4950
getConfigPath: getConfigPathStub,
50-
deleteResults: deleteResultsStub
51+
deleteResults: deleteResultsStub,
52+
readBsConfigJSON: readBsConfigJSONStub
5153
},
5254
});
5355

0 commit comments

Comments
 (0)