Skip to content
Closed
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 @@ -148,10 +148,12 @@ describe(
cy.editTableCell(0, 0);
cy.enterTableCellValue(0, 0, "newValue");
cy.saveTableCellValue(0, 0);
cy.get(".t--widget-textwidget .bp3-ui-text").should(
"contain",
const exected = JSON.parse(
`[ { "index": 0, "updatedFields": { "step": "newValue" }, "allFields": { "step": "newValue", "task": "Drop a table", "status": "✅" } }]`,
);
agHelper
.GetText(".t--widget-textwidget .bp3-ui-text", "text")
.should((text) => expect(JSON.parse(text)).to.deep.equal(exected));
cy.openPropertyPane("textwidget");
cy.updateCodeInput(
".t--property-control-text",
Expand Down
2 changes: 1 addition & 1 deletion app/client/cypress/limited-tests.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# To run only limited tests - give the spec names in below format:
# For running all specs - uncomment below:
#cypress/e2e/**/**/*

cypress/e2e/Regression/ClientSide/Widgets/TableV2/Inline_editing_3_spec.js
#ci-test-limit uses this file to run minimum of specs. Do not run entire suite with this command.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public DataSourceProperties configurePostgresDB() {
if (!appsmithDbUrl.contains("postgresql")) {
return null;
}
log.info("Found PostgreSQL uri configuring now");
log.info("Found PostgreSQL uri configuring now.");
return extractJdbcProperties(appsmithDbUrl);
}

Expand Down