refactor(core): Prepare insights for move to standalone module (#16426)

This commit is contained in:
Iván Ovejero
2025-06-17 14:51:30 +02:00
committed by GitHub
parent 2bc3f8cf9d
commit ac032418cb
25 changed files with 49 additions and 26 deletions

View File

@@ -1,5 +1,6 @@
import type { GlobalConfig } from '@n8n/config';
import type { ExecutionRepository } from '@n8n/db';
import { mockLogger } from '@n8n/integration-test-utils';
import { mock } from 'jest-mock-extended';
import type { WorkflowExecuteMode as ExecutionMode } from 'n8n-workflow';
@@ -13,7 +14,6 @@ import config from '@/config';
import { InvalidConcurrencyLimitError } from '@/errors/invalid-concurrency-limit.error';
import type { EventService } from '@/events/event.service';
import type { Telemetry } from '@/telemetry';
import { mockLogger } from '@test/mocking';
import { ConcurrencyQueue } from '../concurrency-queue';