test(editor): Add tests for node settings parameters composable (no-changelog) (#17232)

This commit is contained in:
Daria
2025-07-11 17:21:14 +03:00
committed by GitHub
parent 25139b2c77
commit 4eb18b7dc7
10 changed files with 272 additions and 59 deletions

View File

@@ -42,6 +42,7 @@ import {
isResourceLocatorParameterType,
isValidParameterOption,
parseFromExpression,
shouldSkipParamValidation,
} from '@/utils/nodeSettingsUtils';
import { hasExpressionMapping, isValueExpression } from '@/utils/nodeTypesUtils';
@@ -426,7 +427,7 @@ const getIssues = computed<string[]>(() => {
let checkValues: string[] = [];
if (!nodeSettingsParameters.shouldSkipParamValidation(displayValue.value)) {
if (!shouldSkipParamValidation(displayValue.value)) {
if (Array.isArray(displayValue.value)) {
checkValues = checkValues.concat(displayValue.value);
} else {