fix(editor): Inline expression previews are not displayed in NDV (#14475)

This commit is contained in:
Suguru Inoue
2025-04-08 16:38:28 +02:00
committed by GitHub
parent 048b9d7589
commit aee83bf344
7 changed files with 156 additions and 53 deletions

View File

@@ -126,6 +126,10 @@ export function getNodeOutputErrorMessage() {
return getOutputPanel().findChildByTestId('node-error-message');
}
export function getParameterExpressionPreviewValue() {
return cy.getByTestId('parameter-expression-preview-value');
}
/**
* Actions
*/
@@ -264,3 +268,7 @@ export function populateFixedCollection<T extends readonly string[]>(
}
}
}
export function assertInlineExpressionValid() {
cy.getByTestId('inline-expression-editor-input').find('.cm-valid-resolvable').should('exist');
}