Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

80 lines
1.9 KiB
TypeScript

import { NodeTestHarness } from '@nodes-testing/node-test-harness';
import { NodeConnectionTypes, type WorkflowTestData } from 'n8n-workflow';
describe('Execute Stop and Error Node', () => {
const testHarness = new NodeTestHarness();
const tests: WorkflowTestData[] = [
{
description: 'should run stopAndError node',
input: {
workflowData: {
nodes: [
{
parameters: {},
id: 'b1dcfb89-3dda-4d18-bdd6-c12d8dee70d2',
name: 'When clicking "Execute Workflow"',
type: 'n8n-nodes-base.manualTrigger',
typeVersion: 1,
position: [820, 400],
},
{
parameters: {
errorType: 'errorObject',
errorObject: '{\n"code": 404,\n"message": "error object from node"\n}',
},
id: '5dae596a-8956-4149-ba9d-36b6b5e80c4a',
name: 'Stop and Error1',
type: 'n8n-nodes-base.stopAndError',
typeVersion: 1,
position: [1080, 300],
continueOnFail: true,
},
{
parameters: {
errorMessage: 'error message from node 0',
},
id: '196ca8fe-994d-46aa-a0ed-bd9beeaa490e',
name: 'Stop and Error',
type: 'n8n-nodes-base.stopAndError',
typeVersion: 1,
position: [1080, 480],
continueOnFail: true,
},
],
connections: {
'When clicking "Execute Workflow"': {
main: [
[
{
node: 'Stop and Error1',
type: NodeConnectionTypes.Main,
index: 0,
},
{
node: 'Stop and Error',
type: NodeConnectionTypes.Main,
index: 0,
},
],
],
},
},
},
},
output: {
nodeExecutionOrder: [
'When clicking "Execute Workflow"',
'Stop and Error1',
'Stop and Error',
],
nodeData: {},
error: 'error message from node 0',
},
},
];
for (const testData of tests) {
testHarness.setupTest(testData);
}
});