Do not report warning: undefined
This commit is contained in:
parent
6408d72268
commit
1f07e287da
6 changed files with 15 additions and 4 deletions
|
|
@ -403,6 +403,13 @@ test("formatWorkflowErrors() when there are multiple errors", (t) => {
|
|||
t.true(message.startsWith("2 issues were detected with this workflow:"));
|
||||
});
|
||||
|
||||
test("formatWorkflowCause() with no errors", (t) => {
|
||||
const message = actionsutil.formatWorkflowCause([
|
||||
]);
|
||||
|
||||
t.deepEqual(message, undefined);
|
||||
});
|
||||
|
||||
test("formatWorkflowCause()", (t) => {
|
||||
const message = actionsutil.formatWorkflowCause([
|
||||
actionsutil.WorkflowErrors.CheckoutWrongHead,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue