We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7727086 commit 7955948Copy full SHA for 7955948
test/unit/bin/commands/runs.js
@@ -28,6 +28,7 @@ describe("runs", () => {
28
});
29
getErrorCodeFromErrStub = sandbox.stub().returns("random-error-code");
30
deleteResultsStub = sandbox.stub();
31
+ readBsConfigJSONStub = sandbox.stub().returns(null);
32
33
34
afterEach(() => {
@@ -47,7 +48,8 @@ describe("runs", () => {
47
48
sendUsageReport: sendUsageReportStub,
49
setUsageReportingFlag: setUsageReportingFlagStub,
50
getConfigPath: getConfigPathStub,
- deleteResults: deleteResultsStub
51
+ deleteResults: deleteResultsStub,
52
+ readBsConfigJSON: readBsConfigJSONStub
53
},
54
55
0 commit comments