You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by di...@apache.org on 2022/09/12 14:48:50 UTC

[superset] branch master updated (1084bde2cc -> 8539d4cb67)

This is an automated email from the ASF dual-hosted git repository.

diegopucci pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 1084bde2cc fix(dashboard): JS error when editing charts (#21422)
     add 8539d4cb67 chore: Cypress runtime enhancements (#21332)

No new revisions were added by this update.

Summary of changes:
 .github/CODEOWNERS                                 |    2 +-
 .../new-chart-2022-09-09T14-22-31.728Z.jpg         |  Bin 0 -> 16879 bytes
 .../cypress-base/cypress/fixtures/charts.json      |   38 +
 .../cypress-base/cypress/fixtures/dashboards.json  |   18 +
 .../cypress-base/cypress/fixtures/example.json     |    5 -
 .../integration/alerts_and_reports/alerts.test.ts  |   37 +-
 .../integration/alerts_and_reports/reports.test.ts |   37 +-
 .../integration/chart_list/card_view.test.ts       |  129 ---
 .../integration/chart_list/chart_list.helper.ts    |   19 -
 .../chart_list/chartlist.applitools.test.ts        |    2 +-
 .../cypress/integration/chart_list/filter.test.ts  |  166 ++-
 .../cypress/integration/chart_list/list.test.ts    |  240 ++++
 .../integration/chart_list/list_view.test.ts       |   73 --
 .../{controls.test.ts => _skip.controls.test.ts}   |   12 +-
 .../{filter.test.ts => _skip.filter.test.ts}       |   13 +-
 .../{key_value.test.ts => _skip.key_value.test.ts} |   10 +-
 ...url_params.test.ts => _skip.url_params.test.ts} |   13 +-
 .../cypress/integration/dashboard/actions.test.js} |   35 +-
 .../dashboard/dashboard.applitools.test.ts         |    8 +-
 .../integration/dashboard/dashboard.helper.ts      |  219 ----
 .../integration/dashboard/drilltodetail.test.ts    |  196 ++--
 .../integration/dashboard/edit_mode.test.js        |   97 --
 .../integration/dashboard/edit_properties.test.ts  |  263 -----
 .../cypress/integration/dashboard/editmode.test.ts |  308 +++++
 .../cypress/integration/dashboard/fav_star.test.js |   63 -
 .../cypress/integration/dashboard/load.test.ts     |   21 +-
 .../cypress/integration/dashboard/markdown.test.ts |   72 --
 .../integration/dashboard/nativeFilters.test.ts    | 1225 +++++++++-----------
 .../cypress/integration/dashboard/save.test.js     |  163 ---
 .../cypress/integration/dashboard/tabs.test.ts     |   86 +-
 .../dashboard/{nativeFilter.helper.ts => utils.ts} |  177 ++-
 .../integration/dashboard_list/card_view.test.ts   |  124 --
 .../dashboard_list/dashboard_list.helper.ts        |   19 -
 .../dashboardlist.applitools.test.ts               |    2 +-
 .../integration/dashboard_list/filter.test.ts      |  123 +-
 .../integration/dashboard_list/list.test.ts        |  248 ++++
 .../integration/dashboard_list/list_view.test.ts   |   61 -
 .../cypress/integration/database/helper.ts         |   19 -
 .../cypress/integration/database/modal.test.ts     |   27 +-
 .../integration/dataset/dataset_list.test.ts       |    9 +-
 ...cFilters.test.ts => _skip.AdhocFilters.test.ts} |    8 +-
 .../cypress/integration/explore/link.test.ts       |    3 +-
 .../cypress/integration/explore/utils.ts}          |   38 +-
 ...dex.test.js => _skip.sourcePanel.index.test.js} |    4 +-
 .../cypress-base/cypress/support/index.d.ts        |   27 +-
 .../cypress-base/cypress/support/index.ts          |  217 +++-
 .../cypress-base/cypress/utils/index.ts            |  102 ++
 .../alert_report.helper.ts => utils/urls.ts}       |    9 +
 superset-frontend/cypress-base/package-lock.json   |   11 +
 superset-frontend/cypress-base/package.json        |    1 +
 .../src/components/Chart/DrillDetailModal.tsx      |    7 +-
 .../src/components/PageHeaderWithActions/index.tsx |    1 +
 .../components/BuilderComponentPane/index.tsx      |    1 +
 .../src/dashboard/components/Header/index.jsx      |    2 +-
 .../dashboard/components/PropertiesModal/index.tsx |    1 +
 .../components/SliceHeaderControls/index.tsx       |    1 +
 .../FiltersConfigForm/DefaultValue.tsx             |    4 +-
 57 files changed, 2265 insertions(+), 2551 deletions(-)
 create mode 100644 superset-frontend/cypress-base/cypress/downloads/new-chart-2022-09-09T14-22-31.728Z.jpg
 create mode 100644 superset-frontend/cypress-base/cypress/fixtures/charts.json
 create mode 100644 superset-frontend/cypress-base/cypress/fixtures/dashboards.json
 delete mode 100644 superset-frontend/cypress-base/cypress/fixtures/example.json
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/chart_list/card_view.test.ts
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/chart_list/chart_list.helper.ts
 create mode 100644 superset-frontend/cypress-base/cypress/integration/chart_list/list.test.ts
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/chart_list/list_view.test.ts
 rename superset-frontend/cypress-base/cypress/integration/dashboard/{controls.test.ts => _skip.controls.test.ts} (92%)
 rename superset-frontend/cypress-base/cypress/integration/dashboard/{filter.test.ts => _skip.filter.test.ts} (91%)
 rename superset-frontend/cypress-base/cypress/integration/dashboard/{key_value.test.ts => _skip.key_value.test.ts} (90%)
 rename superset-frontend/cypress-base/cypress/integration/dashboard/{url_params.test.ts => _skip.url_params.test.ts} (83%)
 copy superset-frontend/{plugins/plugin-chart-echarts/test/utils/controls.test.ts => cypress-base/cypress/integration/dashboard/actions.test.js} (55%)
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard/dashboard.helper.ts
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard/edit_mode.test.js
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard/edit_properties.test.ts
 create mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard/editmode.test.ts
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard/fav_star.test.js
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard/markdown.test.ts
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard/save.test.js
 rename superset-frontend/cypress-base/cypress/integration/dashboard/{nativeFilter.helper.ts => utils.ts} (79%)
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard_list/card_view.test.ts
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard_list/dashboard_list.helper.ts
 create mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard_list/list.test.ts
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/dashboard_list/list_view.test.ts
 delete mode 100644 superset-frontend/cypress-base/cypress/integration/database/helper.ts
 rename superset-frontend/cypress-base/cypress/integration/explore/{AdhocFilters.test.ts => _skip.AdhocFilters.test.ts} (95%)
 copy superset-frontend/{src/dashboard/stylesheets/builder.less => cypress-base/cypress/integration/explore/utils.ts} (53%)
 rename superset-frontend/cypress-base/cypress/integration/sqllab/{sourcePanel.index.test.js => _skip.sourcePanel.index.test.js} (94%)
 rename superset-frontend/cypress-base/cypress/{integration/alerts_and_reports/alert_report.helper.ts => utils/urls.ts} (64%)