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 3ec72d1 commit a742831Copy full SHA for a742831
tests/verify.ts
@@ -111,7 +111,7 @@ export const noErrorsOrWarnings: Verify = {
111
name: "No Errors or Warnings",
112
verify: (outputs: ExecuteOutput[]) => {
113
const isErrorOrWarning = (output: ExecuteOutput) => {
114
- return output.levelName.toLowerCase() === "warning" ||
+ return output.levelName.toLowerCase() === "warn" ||
115
output.levelName.toLowerCase() === "error";
116
};
117
0 commit comments