We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b79a976 commit 0a7280aCopy full SHA for 0a7280a
1 file changed
src/analyses.test.ts
@@ -125,11 +125,7 @@ test.serial(
125
requiredInputStub.withArgs("analysis-kinds").returns("code-quality");
126
const result = await getAnalysisKinds(logger, features, true);
127
t.deepEqual(result, [AnalysisKind.CodeQuality]);
128
- t.assert(
129
- !logger.hasMessage(
130
- "An analysis kind other than `code-scanning` was specified in a custom workflow.",
131
- ),
132
- );
+ t.deepEqual(logger.messages, []);
133
},
134
);
135
0 commit comments