add missing test logger function mock

This commit is contained in:
einhornimmond 2025-06-27 14:20:26 +02:00
parent c328b73a97
commit 7bd3d7022f

View File

@ -83,6 +83,9 @@ const getLoggerMocked = jest.fn().mockImplementation((param: any) => {
}),
clearContext: jest.fn(() => {
fakeLogger.context.clear()
}),
isDebugEnabled: jest.fn(() => {
return true
})
}
loggers[param] = fakeLogger