From 5688384113022e27e3f1f279f743aabfe9569d17 Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Thu, 6 Nov 2025 23:14:11 +0100 Subject: [PATCH] fix: Update test expectations for workflow activation response format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The workflow activation/deactivation implementation added two new fields to the response details object (active and warnings). Updated test expectations to match the new response format. Fixes CI test failures in handlers-workflow-diff.test.ts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Conceived by Romuald Członkowski - www.aiadvisors.pl/en --- tests/unit/mcp/handlers-workflow-diff.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unit/mcp/handlers-workflow-diff.test.ts b/tests/unit/mcp/handlers-workflow-diff.test.ts index 1edab79..31c1874 100644 --- a/tests/unit/mcp/handlers-workflow-diff.test.ts +++ b/tests/unit/mcp/handlers-workflow-diff.test.ts @@ -156,9 +156,11 @@ describe('handlers-workflow-diff', () => { operationsApplied: 1, workflowId: 'test-workflow-id', workflowName: 'Test Workflow', + active: true, applied: [0], failed: [], errors: [], + warnings: undefined, }, });