feat: add forms feature set

This commit is contained in:
Ali BARIN
2025-04-17 20:09:00 +00:00
committed by Faruk AYDIN
parent 2a89f92dc7
commit 510310e43c
28 changed files with 511 additions and 3 deletions

View File

@@ -80,8 +80,9 @@ const globalVariable = async (options) => {
$.triggerOutput.data.push(triggerItem);
const isWebhookApp = app.key === 'webhook';
const isFormsApp = app.key === 'forms';
if ($.execution.testRun && !isWebhookApp) {
if ($.execution.testRun && !isWebhookApp && !isFormsApp) {
// early exit after receiving one item as it is enough for test execution
throw new EarlyExitError();
}