mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
refactor(core): Rename ActiveWorkflowRunner to ActiveWorkflowManager (no-changelog) (#9280)
This commit is contained in:
@@ -11,7 +11,7 @@ import { Push } from '@/push';
|
||||
import type { WorkflowEntity } from '@db/entities/WorkflowEntity';
|
||||
|
||||
import { mockInstance } from '../shared/mocking';
|
||||
import { initActiveWorkflowRunner } from './shared/utils';
|
||||
import { initActiveWorkflowManager } from './shared/utils';
|
||||
import * as testDb from './shared/testDb';
|
||||
import { createUser } from './shared/db/users';
|
||||
import { createWorkflow } from './shared/db/workflows';
|
||||
@@ -41,7 +41,7 @@ describe('Webhook API', () => {
|
||||
nodeTypes.getByName.mockReturnValue(node);
|
||||
nodeTypes.getByNameAndVersion.mockReturnValue(node);
|
||||
|
||||
await initActiveWorkflowRunner();
|
||||
await initActiveWorkflowManager();
|
||||
|
||||
const server = new (class extends AbstractServer {})();
|
||||
await server.start();
|
||||
@@ -144,7 +144,7 @@ describe('Webhook API', () => {
|
||||
nodeTypes.getByName.mockReturnValue(node);
|
||||
nodeTypes.getByNameAndVersion.mockReturnValue(node);
|
||||
|
||||
await initActiveWorkflowRunner();
|
||||
await initActiveWorkflowManager();
|
||||
|
||||
const server = new (class extends AbstractServer {})();
|
||||
await server.start();
|
||||
|
||||
Reference in New Issue
Block a user