From 8cd8ec4ddf9b97e9c47d00e43ce284dcfc76ca9b Mon Sep 17 00:00:00 2001 From: Brian DeHamer Date: Fri, 13 Feb 2026 14:45:44 -0800 Subject: [PATCH] debug mock Signed-off-by: Brian DeHamer --- __tests__/main.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/__tests__/main.test.ts b/__tests__/main.test.ts index a61dfa7..4eb64c7 100644 --- a/__tests__/main.test.ts +++ b/__tests__/main.test.ts @@ -16,6 +16,7 @@ const startGroupMock = jest.fn() const endGroupMock = jest.fn() const setOutputMock = jest.fn() const setFailedMock = jest.fn() +const debugMock = jest.fn() // OCI mocks const getRegCredsMock = jest.fn() @@ -69,6 +70,7 @@ jest.unstable_mockModule('@actions/core', () => ({ endGroup: endGroupMock, setOutput: setOutputMock, setFailed: setFailedMock, + debug: debugMock, summary: summaryMock }))