From d2150384e48564fa920dbc898c8c384680f1105c Mon Sep 17 00:00:00 2001 From: Apple Date: Wed, 16 Jun 2021 11:46:37 +0530 Subject: [PATCH] upated test for Data change --- .../Binding/Bind_API_with_List_Widget_spec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/client/cypress/integration/Smoke_TestSuite/ClientSideTests/Binding/Bind_API_with_List_Widget_spec.js b/app/client/cypress/integration/Smoke_TestSuite/ClientSideTests/Binding/Bind_API_with_List_Widget_spec.js index e29f52dae68e..1c6ff1282bf9 100644 --- a/app/client/cypress/integration/Smoke_TestSuite/ClientSideTests/Binding/Bind_API_with_List_Widget_spec.js +++ b/app/client/cypress/integration/Smoke_TestSuite/ClientSideTests/Binding/Bind_API_with_List_Widget_spec.js @@ -43,7 +43,7 @@ describe("Test Create Api and Bind to Table widget", function() { .first() .invoke("text") .then((text) => { - expect(text).to.equal("Barty Crouch"); + expect(text).to.equal("Barty Crouch Jr"); }); cy.PublishtheApp(); cy.get(".t--widget-textwidget span").should("have.length", 4); @@ -51,7 +51,7 @@ describe("Test Create Api and Bind to Table widget", function() { .first() .invoke("text") .then((text) => { - expect(text).to.equal("Barty Crouch"); + expect(text).to.equal("Barty Crouch Jr"); }); }); @@ -73,7 +73,7 @@ describe("Test Create Api and Bind to Table widget", function() { .first() .invoke("text") .then((text) => { - expect(text).to.equal("Barty Crouch"); + expect(text).to.equal("Barty Crouch Jr"); }); cy.PublishtheApp(); cy.get(".t--widget-textwidget span").should("have.length", 2); @@ -81,7 +81,7 @@ describe("Test Create Api and Bind to Table widget", function() { .first() .invoke("text") .then((text) => { - expect(text).to.equal("Barty Crouch"); + expect(text).to.equal("Barty Crouch Jr"); }); });