mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
test(editor): Add tests for node settings parameters composable (no-changelog) (#17232)
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user