refactor(core): Use DI in execution services (no-changelog) (#8358)

This commit is contained in:
Iván Ovejero
2024-01-17 15:42:19 +01:00
committed by GitHub
parent 01280815c9
commit 2eb829a6b4
9 changed files with 101 additions and 106 deletions

View File

@@ -6,6 +6,9 @@ import { createWorkflow } from './shared/db/workflows';
import * as testDb from './shared/testDb';
import { setupTestServer } from './shared/utils';
import { mockInstance } from '../shared/mocking';
import { EnterpriseExecutionsService } from '@/executions/execution.service.ee';
mockInstance(EnterpriseExecutionsService);
mockInstance(Push);
let testServer = setupTestServer({ endpointGroups: ['executions'] });