Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe(
it("should check that custom widget default component loaded and working properly", () => {
getIframeBody().find(".tip-container").should("exist");
getIframeBody()
.find(".tip-container p")
.find(".tip-container .content")
.should(
"have.text",
"Pass data to this widget in the default model field",
Expand All @@ -46,7 +46,7 @@ describe(
getIframeBody().find("button.primary").trigger("click");

getIframeBody()
.find(".tip-container p")
.find(".tip-container .content")
.should(
"have.text",
"Access data in the javascript file using the appsmith.model variable",
Expand All @@ -62,7 +62,7 @@ describe(

getIframeBody().find(".tip-container").should("exist");
getIframeBody()
.find(".tip-container p")
.find(".tip-container .content")
.should(
"have.text",
"Pass data to this widget in the default model field",
Expand All @@ -71,7 +71,7 @@ describe(
getIframeBody().find("button.primary").trigger("click");

getIframeBody()
.find(".tip-container p")
.find(".tip-container .content")
.should(
"have.text",
"Access data in the javascript file using the appsmith.model variable",
Expand Down
Loading
Loading