Skip to content

Commit

Permalink
bumping AG Grid to v31.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BSd3v committed Apr 24, 2024
1 parent 5f9a4ef commit 77d3c43
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dash-ag-grid",
"version": "31.2.1",
"version": "31.0.1",
"description": "Dash wrapper around AG Grid, the best interactive data grid for the web.",
"repository": {
"type": "git",
Expand Down
6 changes: 6 additions & 0 deletions tests/test_selected_rows.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ def test_sr2_selected_rows_rowdata(dash_duo):
dag.AgGrid(
id='grid',
columnSize="sizeToFit",
columnDefs=[{'field': 'A'}],
dashGridOptions={
"rowHeight": None,
"domLayout": "normal",
Expand Down Expand Up @@ -152,6 +153,8 @@ def update_selected_row_info(selected_rows):

grid = utils.Grid(dash_duo, "grid")

grid.wait_for_header_text(0, 'A')

dash_duo.find_element('#update-button').click()

grid.wait_for_cell_text(0, 0, "1")
Expand Down Expand Up @@ -186,6 +189,7 @@ def test_sr3_selected_rows_modes(dash_duo):
dag.AgGrid(
id='grid',
columnSize="sizeToFit",
columnDefs=[{'field': 'A'}],
dashGridOptions={
"rowHeight": None,
"domLayout": "normal",
Expand Down Expand Up @@ -245,6 +249,8 @@ def update_selected_row_info(selected_rows):

grid = utils.Grid(dash_duo, "grid")

grid.wait_for_header_text(0, 'A')

dash_duo.find_element('#update-button').click()

grid.wait_for_cell_text(0, 0, "1")
Expand Down

0 comments on commit 77d3c43

Please sign in to comment.