test(core): Fix typing issues in tests (no-changelog) (#10244)
This commit is contained in:
@@ -20,7 +20,10 @@ const executionRepository = mock<ExecutionRepository>({
|
||||
createNewExecution,
|
||||
});
|
||||
|
||||
const concurrencyControl = mockInstance(ConcurrencyControlService, { isEnabled: false });
|
||||
const concurrencyControl = mockInstance(ConcurrencyControlService, {
|
||||
// @ts-expect-error Private property
|
||||
isEnabled: false,
|
||||
});
|
||||
|
||||
describe('ActiveExecutions', () => {
|
||||
let activeExecutions: ActiveExecutions;
|
||||
|
||||
Reference in New Issue
Block a user