Merge branch 'master' into refactor_countOpenPendingTransactions_PendingTransactionState

This commit is contained in:
einhornimmond 2025-06-27 14:32:53 +02:00 committed by GitHub
commit 56cdbae40a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -36,7 +36,7 @@ jobs:
database_migration_test:
if: needs.files-changed.outputs.database == 'true' || needs.files-changed.outputs.docker-compose == 'true' || needs.files-changed.outputs.mariadb == 'true' || needs.files-changed.outputs.shared == 'true'
name: Database Migration Test - Up, Test + Reset
name: Database Migration Test - Up + Reset
needs: files-changed
runs-on: ubuntu-latest
steps:

View File

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

View File

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