mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
build: Fix outdated import to fix build (no-changelog) (#8558)
This commit is contained in:
parent
abddbb6227
commit
dc068ce2e6
|
@ -1,6 +1,6 @@
|
||||||
import { ExternalSecretsManager } from '@/ExternalSecrets/ExternalSecretsManager.ee';
|
import { ExternalSecretsManager } from '@/ExternalSecrets/ExternalSecretsManager.ee';
|
||||||
import { License } from '@/License';
|
import { License } from '@/License';
|
||||||
import { MessageEventBus } from '@/eventbus';
|
import { MessageEventBus } from '@/eventbus/MessageEventBus/MessageEventBus';
|
||||||
import Container from 'typedi';
|
import Container from 'typedi';
|
||||||
import { Logger } from 'winston';
|
import { Logger } from 'winston';
|
||||||
import { messageToRedisServiceCommandObject, debounceMessageReceiver } from '../helpers';
|
import { messageToRedisServiceCommandObject, debounceMessageReceiver } from '../helpers';
|
||||||
|
|
|
@ -5,7 +5,6 @@ import { InternalHooks } from '@/InternalHooks';
|
||||||
import type { License } from '@/License';
|
import type { License } from '@/License';
|
||||||
import type { Telemetry } from '@/telemetry';
|
import type { Telemetry } from '@/telemetry';
|
||||||
|
|
||||||
jest.mock('@/eventbus');
|
|
||||||
jest.mock('node:os', () => ({
|
jest.mock('node:os', () => ({
|
||||||
tmpdir: () => '',
|
tmpdir: () => '',
|
||||||
cpus: () => [{ model: 'MIPS R3000', speed: 40_000_000 }],
|
cpus: () => [{ model: 'MIPS R3000', speed: 40_000_000 }],
|
||||||
|
|
Loading…
Reference in a new issue