Skip to content

Commit a93eec9

Browse files
author
Shailesh Jagannath Padave
committed
Updated test
1 parent c86de13 commit a93eec9

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

src/core/__test__/executor.test.ts

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -295,16 +295,7 @@ describe("Execute WF with diff return strategy and Signal them", () => {
295295
// Get workflow details and verify it's completed
296296
const workflowDetails = await executor.getWorkflow(workflowId, true);
297297
expect(workflowDetails.status).toEqual('COMPLETED');
298-
299-
// Verify task output was correctly set
300-
// @ts-ignore
301-
const completedTask = workflowDetails.tasks.find(task => task.referenceTaskName === taskRefName);
302-
expect(completedTask).toBeDefined();
303-
// @ts-ignore
304-
expect(completedTask.status).toEqual('COMPLETED');
305-
// @ts-ignore
306-
expect(completedTask.outputData).toMatchObject(taskOutput);
307-
298+
308299
return workflowId; // Return workflowId for the next test
309300
});
310301
});

0 commit comments

Comments
 (0)