From commits-return-2923-archive-asf-public=cust-asf.ponee.io@superset.incubator.apache.org Mon Jul 15 06:00:17 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 1C15E180595 for ; Mon, 15 Jul 2019 08:00:17 +0200 (CEST) Received: (qmail 59495 invoked by uid 500); 15 Jul 2019 06:00:16 -0000 Mailing-List: contact commits-help@superset.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@superset.incubator.apache.org Delivered-To: mailing list commits@superset.incubator.apache.org Received: (qmail 59486 invoked by uid 99); 15 Jul 2019 06:00:16 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Jul 2019 06:00:16 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E6CAC85E18; Mon, 15 Jul 2019 06:00:12 +0000 (UTC) Date: Mon, 15 Jul 2019 06:00:12 +0000 To: "commits@superset.apache.org" Subject: [incubator-superset] branch master updated: [cypress] Disable chromeWebSecurity globally (#7853) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <156317041222.631.10748578825189806410@gitbox.apache.org> From: graceguo@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-superset X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: f53acd84a79885559c00bcc31ec786c57269ffc8 X-Git-Newrev: eed99b13a2001e92d2948a4ee405648671c2f303 X-Git-Rev: eed99b13a2001e92d2948a4ee405648671c2f303 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. graceguo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-superset.git The following commit(s) were added to refs/heads/master by this push: new eed99b1 [cypress] Disable chromeWebSecurity globally (#7853) eed99b1 is described below commit eed99b13a2001e92d2948a4ee405648671c2f303 Author: Grace Guo AuthorDate: Sun Jul 14 22:59:59 2019 -0700 [cypress] Disable chromeWebSecurity globally (#7853) --- superset/assets/cypress.json | 7 ++++--- superset/assets/cypress/integration/dashboard/save.js | 2 -- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/superset/assets/cypress.json b/superset/assets/cypress.json index 58ae32f..9c1d3f6 100644 --- a/superset/assets/cypress.json +++ b/superset/assets/cypress.json @@ -1,10 +1,11 @@ { "baseUrl": "http://localhost:8081", - "videoUploadOnPasses": false, - "video": false, + "chromeWebSecurity": false, + "defaultCommandTimeout": 10000, "ignoreTestFiles": ["**/!(*.test.js)"], "projectId": "fbf96q", - "defaultCommandTimeout": 10000, + "video": false, + "videoUploadOnPasses": false, "viewportWidth": 1280, "viewportHeight": 800 } diff --git a/superset/assets/cypress/integration/dashboard/save.js b/superset/assets/cypress/integration/dashboard/save.js index d089577..772862d 100644 --- a/superset/assets/cypress/integration/dashboard/save.js +++ b/superset/assets/cypress/integration/dashboard/save.js @@ -20,8 +20,6 @@ import readResponseBlob from '../../utils/readResponseBlob'; import { WORLD_HEALTH_DASHBOARD } from './dashboard.helper'; export default () => describe('save', () => { - Cypress.config('chromeWebSecurity', false); - let dashboardId; let boxplotChartId;