mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix: Prevent NodeApiError rewraping (no-changelog) (#9627)
This commit is contained in:
@@ -12,11 +12,7 @@ describe('NodeError', () => {
|
||||
const wrapped1 = new NodeOperationError(node, apiError);
|
||||
const wrapped2 = new NodeOperationError(node, opsError);
|
||||
|
||||
expect(wrapped1.level).toEqual('error');
|
||||
expect(wrapped1.message).toEqual('The service was not able to process your request');
|
||||
expect(wrapped1.tags).toEqual(expect.objectContaining({ reWrapped: true }));
|
||||
expect(wrapped2.level).toEqual('error');
|
||||
expect(wrapped2.message).toEqual('Some operation failed');
|
||||
expect(wrapped2.tags).toEqual(expect.objectContaining({ reWrapped: true }));
|
||||
expect(wrapped1).toEqual(apiError);
|
||||
expect(wrapped2).toEqual(opsError);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user