refactor(core): Break up more code in the execution engine, and add tests (no-changelog) (#12320)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-12-20 14:40:06 +01:00
committed by GitHub
parent 2f21404987
commit a8dd35b0f0
20 changed files with 1492 additions and 764 deletions

View File

@@ -22,13 +22,13 @@ import { ApplicationError, createDeferredPromise } from 'n8n-workflow';
import {
copyBinaryFile,
getBinaryHelperFunctions,
getInputConnectionData,
getNodeWebhookUrl,
getRequestHelperFunctions,
returnJsonArray,
} from '@/NodeExecuteFunctions';
import { NodeExecutionContext } from './node-execution-context';
import { getInputConnectionData } from './utils/getInputConnectionData';
export class WebhookContext extends NodeExecutionContext implements IWebhookFunctions {
readonly helpers: IWebhookFunctions['helpers'];