From 0e9d2f5778b631197bde5fe4673b3c21c1f88238 Mon Sep 17 00:00:00 2001 From: Tre' Seymour Date: Mon, 10 May 2021 10:40:00 -0600 Subject: [PATCH] Run just this group and remove some after code per cr. If it fails we may have to put some of it back --- test/functional/apps/visualize/index.ts | 2 +- .../visualize/input_control_vis/input_control_range.ts | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/test/functional/apps/visualize/index.ts b/test/functional/apps/visualize/index.ts index 24c2b2b234924..989ac219b19c2 100644 --- a/test/functional/apps/visualize/index.ts +++ b/test/functional/apps/visualize/index.ts @@ -62,7 +62,7 @@ export default function ({ getService, loadTestFile }: FtrProviderContext) { if (!isOss) load('./_chart_types'); }); - describe('visualize ciGroup10', function () { + describe.only('visualize ciGroup10', function () { this.tags('ciGroup10'); [ diff --git a/test/functional/apps/visualize/input_control_vis/input_control_range.ts b/test/functional/apps/visualize/input_control_vis/input_control_range.ts index 8979266444973..97e746ba4a4c0 100644 --- a/test/functional/apps/visualize/input_control_vis/input_control_range.ts +++ b/test/functional/apps/visualize/input_control_vis/input_control_range.ts @@ -12,7 +12,6 @@ import { FtrProviderContext } from '../../../ftr_provider_context'; export default function ({ getService, getPageObjects }: FtrProviderContext) { const esArchiver = getService('esArchiver'); - const kibanaServer = getService('kibanaServer'); const find = getService('find'); const security = getService('security'); const PageObjects = getPageObjects(['visualize']); @@ -52,12 +51,6 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { after(async () => { await esArchiver.unload('kibana_sample_data_flights_index_pattern'); - // loading back default data - await esArchiver.load('empty_kibana'); - - await kibanaServer.importExport.load('discover'); - await esArchiver.loadIfNeeded('logstash_functional'); - await esArchiver.loadIfNeeded('long_window_logstash'); await security.testUser.restoreDefaults(); }); });