Merge branch 'release' into bugfix/trunncate-org-name-settings

This commit is contained in:
Kaushik Varanasi 2021-03-17 12:45:13 +05:30
commit 8fd0509bcb
2 changed files with 8 additions and 3 deletions

View File

@ -128,7 +128,6 @@ if (Cypress.env("APPSMITH_GOOGLE_MAPS_API_KEY")) {
});
it("Map-Check Visible field Validation", function() {
cy.openPropertyPane("mapwidget");
//Check the disableed checkbox and Validate
cy.CheckWidgetProperties(commonlocators.visibleCheckbox);
cy.PublishtheApp();

View File

@ -15,8 +15,14 @@ describe("Onboarding", function() {
201,
);
cy.wait("@getDataSources");
cy.get(".t--start-building").click();
cy.wait("@getPluginForm").should(
"have.nested.property",
"response.body.responseMeta.status",
200,
);
cy.get(".t--start-building")
.should("be.visible")
.click({ force: true });
// Create and run query
cy.get(".t--onboarding-indicator").should("be.visible");
cy.get(".t--create-query").click();