Skip to content

Commit a742831

Browse files
committed
log level seems to be WARN and not WARNING
1 parent 3ec72d1 commit a742831

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/verify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const noErrorsOrWarnings: Verify = {
111111
name: "No Errors or Warnings",
112112
verify: (outputs: ExecuteOutput[]) => {
113113
const isErrorOrWarning = (output: ExecuteOutput) => {
114-
return output.levelName.toLowerCase() === "warning" ||
114+
return output.levelName.toLowerCase() === "warn" ||
115115
output.levelName.toLowerCase() === "error";
116116
};
117117

0 commit comments

Comments
 (0)