You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2023/08/03 23:03:38 UTC

[superset] 06/12: stupid replace

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

maximebeauchemin pushed a commit to branch bump_esilnt
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 7cb65fed624cf6b99bdbecf8df542516dff3d547
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Wed Aug 2 09:32:09 2023 -0700

    stupid replace
---
 .../cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts          | 2 +-
 superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts | 4 ++--
 superset-frontend/cypress-base/cypress/e2e/dashboard/tabs.test.ts     | 2 +-
 superset-frontend/cypress-base/cypress/e2e/dashboard/utils.ts         | 2 +-
 .../cypress-base/cypress/e2e/dashboard_list/list.test.ts              | 2 +-
 superset-frontend/cypress-base/cypress/e2e/database/modal.test.ts     | 2 ++
 .../cypress-base/cypress/e2e/explore/AdhocMetrics.test.ts             | 2 +-
 .../cypress-base/cypress/e2e/explore/_skip.AdhocFilters.test.ts       | 2 +-
 8 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/superset-frontend/cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts b/superset-frontend/cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts
index a948ffe386..df03ef8513 100644
--- a/superset-frontend/cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/dashboard/drilltodetail.test.ts
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-// eslint-disable cypress/unsafe-to-chain-command
+/* eslint-disable cypress/unsafe-to-chain-command */
 
 import { waitForChartLoad } from 'cypress/utils';
 import { SUPPORTED_CHARTS_DASHBOARD } from 'cypress/utils/urls';
diff --git a/superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts b/superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts
index 653268f982..b7d4541501 100644
--- a/superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/dashboard/editmode.test.ts
@@ -25,8 +25,8 @@ import {
   interceptFiltering as interceptCharts,
 } from '../explore/utils';
 
-// eslint-disable @typescript-eslint/no-explicit-any
-// eslint-disable cypress/unsafe-to-chain-command
+/* eslint-disable cypress/unsafe-to-chain-command */
+/* eslint-disable @typescript-eslint/no-explicit-any */
 
 function editDashboard() {
   cy.getBySel('edit-dashboard-button').click();
diff --git a/superset-frontend/cypress-base/cypress/e2e/dashboard/tabs.test.ts b/superset-frontend/cypress-base/cypress/e2e/dashboard/tabs.test.ts
index 624c60b09b..2563133a36 100644
--- a/superset-frontend/cypress-base/cypress/e2e/dashboard/tabs.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/dashboard/tabs.test.ts
@@ -24,7 +24,7 @@ import {
 import { TABBED_DASHBOARD } from 'cypress/utils/urls';
 import { expandFilterOnLeftPanel } from './utils';
 
-// eslint-disable cypress/unsafe-to-chain-command
+/* eslint-disable cypress/unsafe-to-chain-command */
 
 const TREEMAP = { name: 'Treemap', viz: 'treemap_v2' };
 const FILTER_BOX = { name: 'Region Filter', viz: 'filter_box' };
diff --git a/superset-frontend/cypress-base/cypress/e2e/dashboard/utils.ts b/superset-frontend/cypress-base/cypress/e2e/dashboard/utils.ts
index dc29b9561a..cf7b7374e7 100644
--- a/superset-frontend/cypress-base/cypress/e2e/dashboard/utils.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/dashboard/utils.ts
@@ -20,7 +20,7 @@
 import { dashboardView, nativeFilters } from 'cypress/support/directories';
 import { ChartSpec, waitForChartLoad } from 'cypress/utils';
 
-// eslint-disable cypress/unsafe-to-chain-command
+/* eslint-disable cypress/unsafe-to-chain-command */
 
 export const WORLD_HEALTH_CHARTS = [
   { name: '% Rural', viz: 'world_map' },
diff --git a/superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts b/superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts
index d7a4c62dcd..31bd26b2a0 100644
--- a/superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/dashboard_list/list.test.ts
@@ -17,7 +17,7 @@
  * under the License.
  */
 
-// eslint-disable cypress/unsafe-to-chain-command
+/* eslint-disable cypress/unsafe-to-chain-command */
 
 import { DASHBOARD_LIST } from 'cypress/utils/urls';
 import { setGridMode, toggleBulkSelect } from 'cypress/utils';
diff --git a/superset-frontend/cypress-base/cypress/e2e/database/modal.test.ts b/superset-frontend/cypress-base/cypress/e2e/database/modal.test.ts
index 3cc34cb64f..024797fa24 100644
--- a/superset-frontend/cypress-base/cypress/e2e/database/modal.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/database/modal.test.ts
@@ -18,6 +18,8 @@
  */
 import { DATABASE_LIST } from 'cypress/utils/urls';
 
+/* eslint-disable cypress/unsafe-to-chain-command */
+
 function closeModal() {
   cy.get('body').then($body => {
     if ($body.find('[data-test="database-modal"]').length) {
diff --git a/superset-frontend/cypress-base/cypress/e2e/explore/AdhocMetrics.test.ts b/superset-frontend/cypress-base/cypress/e2e/explore/AdhocMetrics.test.ts
index ba61fe3018..535f865253 100644
--- a/superset-frontend/cypress-base/cypress/e2e/explore/AdhocMetrics.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/explore/AdhocMetrics.test.ts
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-// eslint-disable cypress/unsafe-to-chain-command
+/* eslint-disable cypress/unsafe-to-chain-command */
 
 describe('AdhocMetrics', () => {
   beforeEach(() => {
diff --git a/superset-frontend/cypress-base/cypress/e2e/explore/_skip.AdhocFilters.test.ts b/superset-frontend/cypress-base/cypress/e2e/explore/_skip.AdhocFilters.test.ts
index 94205cba0a..1e2424ce98 100644
--- a/superset-frontend/cypress-base/cypress/e2e/explore/_skip.AdhocFilters.test.ts
+++ b/superset-frontend/cypress-base/cypress/e2e/explore/_skip.AdhocFilters.test.ts
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-// eslint-disable cypress/unsafe-to-chain-command
+/* eslint-disable cypress/unsafe-to-chain-command */
 
 describe.skip('AdhocFilters', () => {
   beforeEach(() => {