Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix linter issue
  • Loading branch information
mbg committed Oct 22, 2025
commit aed27f72313127fc271ae8f79794ab198d73f146
8 changes: 7 additions & 1 deletion src/upload-sarif.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,13 @@ test("processAndUploadSarif doesn't upload if upload is disabled", async (t) =>
fs.writeFileSync(toFullPath("test.sarif"), "");
fs.writeFileSync(toFullPath("test.quality.sarif"), "");

const actual = await processAndUploadSarif(logger, features, "never", "", tempDir);
const actual = await processAndUploadSarif(
logger,
features,
"never",
"",
tempDir,
);

t.truthy(actual);
t.assert(postProcessSarifFiles.calledTwice);
Expand Down
Loading