fix(editor): Fix updating of canvas node issue when credential is set-up (#14633)

Co-authored-by: Alex Grozav <alex@grozav.com>
This commit is contained in:
oleg
2025-04-16 09:47:20 +02:00
committed by GitHub
parent ca4d25253a
commit bc269234cf
4 changed files with 157 additions and 7 deletions

View File

@@ -188,6 +188,13 @@ export function getZoomToFitButton() {
return cy.getByTestId('zoom-to-fit');
}
export function getNodeIssuesByName(nodeName: string) {
return getCanvasNodes()
.filter(`:contains(${nodeName})`)
.should('have.length.greaterThan', 0)
.findChildByTestId('node-issues');
}
/**
* Actions
*/