mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 05:23:08 +00:00
fix: use empty settings object in Update Connections test
Use empty settings {} instead of current.settings to avoid potential
filtering issues that could cause API validation failures.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -176,7 +176,7 @@ describe('Integration: handleUpdateWorkflow', () => {
|
|||||||
name: current.name, // Required by n8n API
|
name: current.name, // Required by n8n API
|
||||||
nodes: current.nodes, // Required by n8n API
|
nodes: current.nodes, // Required by n8n API
|
||||||
connections: {},
|
connections: {},
|
||||||
settings: current.settings // Required by n8n API
|
settings: {} // Empty settings (safe for all n8n versions)
|
||||||
},
|
},
|
||||||
mcpContext
|
mcpContext
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user