-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32673 from appsmithorg/release
15/04 Daily Promotion
- Loading branch information
Showing
87 changed files
with
1,161 additions
and
1,360 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
90 changes: 0 additions & 90 deletions
90
app/client/cypress/e2e/Regression/ClientSide/BugTests/MultipleOnPageLoadConfirmation_Spec.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
app/client/cypress/e2e/Regression/ClientSide/Widgets/TableV2/scrollbar_spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import { | ||
entityExplorer, | ||
propPane, | ||
agHelper, | ||
draggableWidgets, | ||
deployMode, | ||
table, | ||
locators, | ||
} from "../../../../../support/Objects/ObjectsCore"; | ||
|
||
describe( | ||
"Table widget v2: tableData change test", | ||
{ tags: ["@tag.Widget", "@tag.Table"] }, | ||
function () { | ||
before(() => { | ||
agHelper.AddDsl("Table/ScrollbarDSL"); | ||
}); | ||
|
||
it("1. Table body should not have the scrollbar", function () { | ||
let tableHeight = 0; | ||
|
||
cy.get(".t--draggable-tablewidgetv2 .table").then(($table) => { | ||
tableHeight = $table[0].clientHeight; | ||
}); | ||
|
||
cy.get(".t--draggable-tablewidgetv2 .table .simplebar-content").then( | ||
($scrollBox) => | ||
expect($scrollBox[0].clientHeight).to.be.equal(tableHeight), | ||
); | ||
}); | ||
}, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.