mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-28 13:16:33 +00:00
Merge branch 'master' into refactor_countOpenPendingTransactions_PendingTransactionState
This commit is contained in:
commit
56cdbae40a
2
.github/workflows/test_database.yml
vendored
2
.github/workflows/test_database.yml
vendored
@ -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:
|
||||
|
||||
@ -81,6 +81,9 @@ const getLoggerMocked = mock().mockImplementation((param: any) => {
|
||||
}),
|
||||
clearContext: jest.fn(() => {
|
||||
fakeLogger.context.clear()
|
||||
}),
|
||||
isDebugEnabled: jest.fn(() => {
|
||||
return true
|
||||
})
|
||||
}
|
||||
loggers[param] = fakeLogger
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user