Skip to content

Commit

Permalink
Merge pull request #119 from digi-serve/fix/connectLabel
Browse files Browse the repository at this point in the history
*Fix the assert statement to verify the labels of the connect field v…
  • Loading branch information
wongpratan authored Jun 17, 2024
2 parents d80c4eb + 2ec427e commit 13d08b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test_cases/widget_form2.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export default (folderName) => {
// verify the connection is made
cy.get(
'.webix_ss_center > .webix_ss_center_scroll > .webix_last > [aria-rowindex="2"]',
).should("contain", "b0ff");
).should("contain", "Link1");

// click Second entry
cy.get(
Expand Down Expand Up @@ -115,7 +115,7 @@ export default (folderName) => {
// verify the connection is made
cy.get(
'.webix_ss_center > .webix_ss_center_scroll > .webix_last > [aria-rowindex="1"]',
).should("contain", "b0ff");
).should("contain", "Link1");

// verify the connection is made
cy.get(
Expand All @@ -124,7 +124,7 @@ export default (folderName) => {
.find(
'.webix_ss_center > .webix_ss_center_scroll > .webix_last > [aria-rowindex="2"]',
)
.should("contain", "b0ff");
.should("contain", "Link1");
});
});
};

0 comments on commit 13d08b7

Please sign in to comment.