We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
csra
addSarifExtension
1 parent 2de76b6 commit db93462Copy full SHA for db93462
src/analyze.test.ts
@@ -4,7 +4,7 @@ import * as path from "path";
4
import test from "ava";
5
import * as sinon from "sinon";
6
7
-import { CodeQuality, CodeScanning } from "./analyses";
+import { CodeQuality, CodeScanning, CSRA } from "./analyses";
8
import {
9
runQueries,
10
defaultSuites,
@@ -155,5 +155,6 @@ test("addSarifExtension", (t) => {
155
addSarifExtension(CodeQuality, language),
156
`${language}.quality.sarif`,
157
);
158
+ t.is(addSarifExtension(CSRA, language), `${language}.csra.sarif`);
159
}
160
});
0 commit comments