We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e32e2e commit 6df04f4Copy full SHA for 6df04f4
src/__tests__/index.test.ts
@@ -168,6 +168,8 @@ describe("index (run)", () => {
168
);
169
expect(mockCore.setOutput).toHaveBeenCalledWith("uploaded-files", 0);
170
expect(mockUploadCoverageFiles).not.toHaveBeenCalled();
171
+ // Explicitly verify that no error is set, ensuring the workflow doesn't fail
172
+ expect(mockCore.setFailed).not.toHaveBeenCalled();
173
});
174
175
it("should fail when repository URL cannot be determined", async () => {
0 commit comments