diff --git a/test/functional/apps/dashboard/_dashboard.js b/test/functional/apps/dashboard/_dashboard.js index 3eb198a0fdc366b..f5572a36980e0bd 100644 --- a/test/functional/apps/dashboard/_dashboard.js +++ b/test/functional/apps/dashboard/_dashboard.js @@ -13,7 +13,7 @@ export default function ({ getService, getPageObjects }) { const testVisualizationTitles = []; const testVisualizationDescriptions = []; - describe('dashboard tab', function describeIndexTests() { + describe.skip('dashboard tab', function describeIndexTests() { before(async function () { await PageObjects.dashboard.initTests(); await PageObjects.dashboard.preserveCrossAppState(); diff --git a/test/functional/apps/dashboard/_dashboard_listing.js b/test/functional/apps/dashboard/_dashboard_listing.js index 1e5ced4733fdfa9..1e4915b2951869b 100644 --- a/test/functional/apps/dashboard/_dashboard_listing.js +++ b/test/functional/apps/dashboard/_dashboard_listing.js @@ -17,7 +17,7 @@ export default function ({ getService, getPageObjects }) { expect(promptExists).to.be(true); }); - it('creates a new dashboard', async function () { + it.skip('creates a new dashboard', async function () { await PageObjects.dashboard.clickCreateDashboardPrompt(); await PageObjects.dashboard.saveDashboard(dashboardName); await PageObjects.header.clickToastOK(); @@ -27,7 +27,7 @@ export default function ({ getService, getPageObjects }) { expect(countOfDashboards).to.equal(1); }); - it('is not shown when there is a dashboard', async function () { + it.skip('is not shown when there is a dashboard', async function () { const promptExists = await PageObjects.dashboard.getCreateDashboardPromptExists(); expect(promptExists).to.be(false); }); @@ -41,7 +41,7 @@ export default function ({ getService, getPageObjects }) { }); }); - describe('delete', async function () { + describe.skip('delete', async function () { it('default confirm action is cancel', async function () { await PageObjects.dashboard.searchForDashboardWithName(''); await PageObjects.dashboard.clickListItemCheckbox(); @@ -67,7 +67,7 @@ export default function ({ getService, getPageObjects }) { }); }); - describe('search', function () { + describe.skip('search', function () { before(async () => { await PageObjects.dashboard.clearSearchValue(); await PageObjects.dashboard.clickCreateDashboardPrompt(); @@ -107,7 +107,7 @@ export default function ({ getService, getPageObjects }) { }); describe('search by title', function () { - it('loads a dashboard if title matches', async function () { + it.skip('loads a dashboard if title matches', async function () { const currentUrl = await remote.getCurrentUrl(); const newUrl = currentUrl + '&title=Two%20Words'; // Only works on a hard refresh. @@ -130,7 +130,7 @@ export default function ({ getService, getPageObjects }) { expect(onDashboardLandingPage).to.equal(false); }); - it('stays on listing page if title matches no dashboards', async function () { + it.skip('stays on listing page if title matches no dashboards', async function () { await PageObjects.dashboard.gotoDashboardLandingPage(); const currentUrl = await remote.getCurrentUrl(); const newUrl = currentUrl + '&title=nodashboardsnamedme'; @@ -143,12 +143,12 @@ export default function ({ getService, getPageObjects }) { expect(onDashboardLandingPage).to.equal(true); }); - it('preloads search filter bar when there is no match', async function () { + it.skip('preloads search filter bar when there is no match', async function () { const searchFilter = await PageObjects.dashboard.getSearchFilterValue(); expect(searchFilter).to.equal('"nodashboardsnamedme"'); }); - it('stays on listing page if title matches two dashboards', async function () { + it.skip('stays on listing page if title matches two dashboards', async function () { await PageObjects.dashboard.clickNewDashboard(); await PageObjects.dashboard.saveDashboard('two words', { needsConfirm: true }); await PageObjects.dashboard.gotoDashboardLandingPage(); @@ -163,12 +163,12 @@ export default function ({ getService, getPageObjects }) { expect(onDashboardLandingPage).to.equal(true); }); - it('preloads search filter bar when there is more than one match', async function () { + it.skip('preloads search filter bar when there is more than one match', async function () { const searchFilter = await PageObjects.dashboard.getSearchFilterValue(); expect(searchFilter).to.equal('"two words"'); }); - it('matches a title with many special characters', async function () { + it.skip('matches a title with many special characters', async function () { await PageObjects.dashboard.clickNewDashboard(); await PageObjects.dashboard.saveDashboard('i am !@#$%^&*()_+~`,.<>{}[]; so special'); await PageObjects.dashboard.gotoDashboardLandingPage(); diff --git a/test/functional/apps/dashboard/_dashboard_save.js b/test/functional/apps/dashboard/_dashboard_save.js index 244969f58c50b2f..268878074ef885b 100644 --- a/test/functional/apps/dashboard/_dashboard_save.js +++ b/test/functional/apps/dashboard/_dashboard_save.js @@ -4,7 +4,7 @@ export default function ({ getService, getPageObjects }) { const retry = getService('retry'); const PageObjects = getPageObjects(['dashboard', 'header', 'common']); - describe('dashboard save', function describeIndexTests() { + describe.skip('dashboard save', function describeIndexTests() { const dashboardName = 'Dashboard Save Test'; before(async function () { diff --git a/test/functional/apps/dashboard/_dashboard_state.js b/test/functional/apps/dashboard/_dashboard_state.js index c7bf60f05bc6655..eca36980c33dd5f 100644 --- a/test/functional/apps/dashboard/_dashboard_state.js +++ b/test/functional/apps/dashboard/_dashboard_state.js @@ -11,7 +11,7 @@ export default function ({ getService, getPageObjects }) { const remote = getService('remote'); const retry = getService('retry'); - describe('dashboard state', function describeIndexTests() { + describe.skip('dashboard state', function describeIndexTests() { before(async function () { await PageObjects.dashboard.initTests(); await PageObjects.dashboard.preserveCrossAppState(); diff --git a/test/functional/apps/dashboard/_dashboard_time.js b/test/functional/apps/dashboard/_dashboard_time.js index 92d8c81ef7c012f..8d3c3b87ade9bb4 100644 --- a/test/functional/apps/dashboard/_dashboard_time.js +++ b/test/functional/apps/dashboard/_dashboard_time.js @@ -8,7 +8,7 @@ const toTime = '2015-09-23 18:31:44.000'; export default function ({ getPageObjects }) { const PageObjects = getPageObjects(['dashboard', 'header']); - describe('dashboard time', function dashboardSaveWithTime() { + describe.skip('dashboard time', function dashboardSaveWithTime() { before(async function () { await PageObjects.dashboard.initTests(); await PageObjects.dashboard.preserveCrossAppState(); diff --git a/test/functional/apps/dashboard/_view_edit.js b/test/functional/apps/dashboard/_view_edit.js index 05cc1dcdbbcdee9..53717f3bb6b8718 100644 --- a/test/functional/apps/dashboard/_view_edit.js +++ b/test/functional/apps/dashboard/_view_edit.js @@ -8,7 +8,7 @@ export default function ({ getService, getPageObjects }) { const PageObjects = getPageObjects(['dashboard', 'header', 'common', 'visualize']); const dashboardName = 'Dashboard View Edit Test'; - describe('dashboard view edit mode', function viewEditModeTests() { + describe.skip('dashboard view edit mode', function viewEditModeTests() { before(async function () { await PageObjects.dashboard.initTests(); await PageObjects.dashboard.preserveCrossAppState(); @@ -25,7 +25,7 @@ export default function ({ getService, getPageObjects }) { await PageObjects.dashboard.clickCancelOutOfEditMode(); }); - it.skip('create test dashboard', async function () { + it('create test dashboard', async function () { await PageObjects.dashboard.gotoDashboardLandingPage(); await PageObjects.dashboard.clickNewDashboard(); await PageObjects.dashboard.addVisualizations(PageObjects.dashboard.getTestVisualizationNames()); @@ -33,7 +33,7 @@ export default function ({ getService, getPageObjects }) { await PageObjects.header.clickToastOK(); }); - it.skip('existing dashboard opens in view mode', async function () { + it('existing dashboard opens in view mode', async function () { await PageObjects.dashboard.gotoDashboardLandingPage(); await PageObjects.dashboard.selectDashboard(dashboardName); const inViewMode = await PageObjects.dashboard.getIsInViewMode(); @@ -42,7 +42,7 @@ export default function ({ getService, getPageObjects }) { }); describe('save', function () { - it.skip('auto exits out of edit mode', async function () { + it('auto exits out of edit mode', async function () { await PageObjects.dashboard.gotoDashboardEditMode(dashboardName); await PageObjects.dashboard.saveDashboard(dashboardName); await PageObjects.header.clickToastOK(); @@ -185,7 +185,7 @@ export default function ({ getService, getPageObjects }) { }); }); - describe.skip('and preserves edits on cancel', function () { + describe('and preserves edits on cancel', function () { it('when time changed is stored with dashboard', async function () { await PageObjects.dashboard.gotoDashboardEditMode(dashboardName); const newFromTime = '2015-09-19 06:31:44.000'; diff --git a/test/functional/apps/visualize/_area_chart.js b/test/functional/apps/visualize/_area_chart.js index ec648ad37fb8788..8fbf7d1ca8a0767 100644 --- a/test/functional/apps/visualize/_area_chart.js +++ b/test/functional/apps/visualize/_area_chart.js @@ -5,7 +5,7 @@ export default function ({ getService, getPageObjects }) { const retry = getService('retry'); const PageObjects = getPageObjects(['common', 'visualize', 'header', 'settings']); - describe('visualize app', function describeIndexTests() { + describe.skip('visualize app', function describeIndexTests() { before(function () { const fromTime = '2015-09-19 06:31:44.000'; const toTime = '2015-09-23 18:31:44.000'; diff --git a/test/functional/apps/visualize/_data_table.js b/test/functional/apps/visualize/_data_table.js index 224ebb05d024df4..a4a2c695008241d 100644 --- a/test/functional/apps/visualize/_data_table.js +++ b/test/functional/apps/visualize/_data_table.js @@ -51,7 +51,7 @@ export default function ({ getService, getPageObjects }) { describe('data table', function indexPatternCreation() { const vizName1 = 'Visualization DataTable'; - it('should be able to save and load', function () { + it.skip('should be able to save and load', function () { return PageObjects.visualize.saveVisualization(vizName1) .then(function (message) { log.debug('Saved viz message = ' + message); diff --git a/test/functional/apps/visualize/_heatmap_chart.js b/test/functional/apps/visualize/_heatmap_chart.js index 8964f669e164f26..d2108f4b8e23f18 100644 --- a/test/functional/apps/visualize/_heatmap_chart.js +++ b/test/functional/apps/visualize/_heatmap_chart.js @@ -50,7 +50,7 @@ export default function ({ getService, getPageObjects }) { describe('heatmap chart', function indexPatternCreation() { const vizName1 = 'Visualization HeatmapChart'; - it('should save and load', function () { + it.skip('should save and load', function () { return PageObjects.visualize.saveVisualization(vizName1) .then(function (message) { log.debug('Saved viz message = ' + message); diff --git a/test/functional/apps/visualize/_input_control_vis.js b/test/functional/apps/visualize/_input_control_vis.js index 03a926c725a29a5..0c02b26e067151e 100644 --- a/test/functional/apps/visualize/_input_control_vis.js +++ b/test/functional/apps/visualize/_input_control_vis.js @@ -23,7 +23,7 @@ export default function ({ getService, getPageObjects }) { describe('input control visualization', () => { - it('should not display spy panel toggle button', async function () { + it.skip('should not display spy panel toggle button', async function () { const spyToggleExists = await PageObjects.visualize.getSpyToggleExists(); expect(spyToggleExists).to.be(false); }); diff --git a/test/functional/apps/visualize/_line_chart.js b/test/functional/apps/visualize/_line_chart.js index 6efe5e9af038ba2..62a62d3adc2628f 100644 --- a/test/functional/apps/visualize/_line_chart.js +++ b/test/functional/apps/visualize/_line_chart.js @@ -125,7 +125,7 @@ export default function ({ getService, getPageObjects }) { }); - it('should be able to save and load', function () { + it.skip('should be able to save and load', function () { return PageObjects.visualize.saveVisualization(vizName1) .then(function (message) { diff --git a/test/functional/apps/visualize/_markdown_vis.js b/test/functional/apps/visualize/_markdown_vis.js index 56e604da0639494..e14c9c46f69e7c0 100644 --- a/test/functional/apps/visualize/_markdown_vis.js +++ b/test/functional/apps/visualize/_markdown_vis.js @@ -19,7 +19,7 @@ export default function ({ getPageObjects, getService }) { describe('markdown vis', async () => { - it('should not display spy panel toggle button', async function () { + it.skip('should not display spy panel toggle button', async function () { const spyToggleExists = await PageObjects.visualize.getSpyToggleExists(); expect(spyToggleExists).to.be(false); }); diff --git a/test/functional/apps/visualize/_pie_chart.js b/test/functional/apps/visualize/_pie_chart.js index e070540b1d7272e..a3a2f2b7c5f28d5 100644 --- a/test/functional/apps/visualize/_pie_chart.js +++ b/test/functional/apps/visualize/_pie_chart.js @@ -57,7 +57,7 @@ export default function ({ getService, getPageObjects }) { describe('pie chart', function indexPatternCreation() { const vizName1 = 'Visualization PieChart'; - it('should save and load', function () { + it.skip('should save and load', function () { return PageObjects.visualize.saveVisualization(vizName1) .then(function (message) { log.debug('Saved viz message = ' + message); diff --git a/test/functional/apps/visualize/_tag_cloud.js b/test/functional/apps/visualize/_tag_cloud.js index 74dd231fa1eb8d8..a00406c77b0c51b 100644 --- a/test/functional/apps/visualize/_tag_cloud.js +++ b/test/functional/apps/visualize/_tag_cloud.js @@ -87,7 +87,7 @@ export default function ({ getService, getPageObjects }) { expect(data).to.eql([ '32,212,254,720', '21,474,836,480', '20,401,094,656', '19,327,352,832', '18,253,611,008' ]); }); - it('should save and load', function () { + it.skip('should save and load', function () { return PageObjects.visualize.saveVisualization(vizName1) .then(function (message) { log.debug('Saved viz message = ' + message); @@ -138,7 +138,7 @@ export default function ({ getService, getPageObjects }) { }); }); - describe('formatted field', function () { + describe.skip('formatted field', function () { before(async function () { await PageObjects.settings.navigateTo(); await PageObjects.settings.clickKibanaIndices(); diff --git a/test/functional/apps/visualize/_tile_map.js b/test/functional/apps/visualize/_tile_map.js index ec6b30c4b731904..08ec5125dd3bd78 100644 --- a/test/functional/apps/visualize/_tile_map.js +++ b/test/functional/apps/visualize/_tile_map.js @@ -150,7 +150,7 @@ export default function ({ getService, getPageObjects }) { await PageObjects.visualize.closeSpyPanel(); }); - it('Newly saved visualization retains map bounds', async () => { + it.skip('Newly saved visualization retains map bounds', async () => { const vizName1 = 'Visualization TileMap'; await PageObjects.visualize.clickMapZoomIn(); diff --git a/test/functional/apps/visualize/_tsvb_chart.js b/test/functional/apps/visualize/_tsvb_chart.js index f7d971e3daf2a9d..cb6a5ab16c0adcb 100644 --- a/test/functional/apps/visualize/_tsvb_chart.js +++ b/test/functional/apps/visualize/_tsvb_chart.js @@ -90,13 +90,13 @@ export default function ({ getService, getPageObjects }) { expect(text).to.be('1442901600000'); }); - it('should allow printing raw value of data', async () => { + it.skip('should allow printing raw value of data', async () => { await PageObjects.visualBuilder.enterMarkdown('{{ count.data.raw.[0].[1] }}'); const text = await PageObjects.visualBuilder.getMarkdownText(); expect(text).to.be('6'); }); - describe('allow time offsets', () => { + describe.skip('allow time offsets', () => { before(async () => { await PageObjects.visualBuilder.enterMarkdown('{{ count.data.raw.[0].[0] }}#{{ count.data.raw.[0].[1] }}'); await PageObjects.visualBuilder.clickMarkdownData(); diff --git a/test/functional/apps/visualize/_vertical_bar_chart.js b/test/functional/apps/visualize/_vertical_bar_chart.js index 636d93961d71081..8b0619b1e241b81 100644 --- a/test/functional/apps/visualize/_vertical_bar_chart.js +++ b/test/functional/apps/visualize/_vertical_bar_chart.js @@ -50,7 +50,7 @@ export default function ({ getService, getPageObjects }) { describe('vertical bar chart', function indexPatternCreation() { const vizName1 = 'Visualization VerticalBarChart'; - it('should save and load', function () { + it.skip('should save and load', function () { return PageObjects.visualize.saveVisualization(vizName1) .then(function (message) { log.debug('Saved viz message = ' + message);