mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
✔️ Fix tests after Workflow changes
This commit is contained in:
@@ -579,7 +579,7 @@ describe('WorkflowExecute', () => {
|
||||
for (const testData of tests) {
|
||||
test(testData.description, async () => {
|
||||
|
||||
const workflowInstance = new Workflow('test', testData.input.workflowData.nodes, testData.input.workflowData.connections, false, nodeTypes);
|
||||
const workflowInstance = new Workflow({ id: 'test', nodes: testData.input.workflowData.nodes, connections: testData.input.workflowData.connections, active: false, nodeTypes });
|
||||
|
||||
const waitPromise = await createDeferredPromise<IRun>();
|
||||
const nodeExecutionOrder: string[] = [];
|
||||
|
||||
Reference in New Issue
Block a user