diff --git a/test/functional/apps/dashboard/dashboard_state.js b/test/functional/apps/dashboard/dashboard_state.js index 37d33dfa884..b579e7b87da 100644 --- a/test/functional/apps/dashboard/dashboard_state.js +++ b/test/functional/apps/dashboard/dashboard_state.js @@ -155,7 +155,9 @@ export default function ({ getService, getPageObjects }) { expect(headers.length).to.be(0); }); - it('Tile map with no changes will update with visualization changes', async () => { + // TODO: [RENAMEME] Re-enable once a valid maps service is in place. + // See: https://github.com/opensearch-project/OpenSearch-Dashboards/issues/221 + xit('Tile map with no changes will update with visualization changes', async () => { await PageObjects.dashboard.gotoDashboardLandingPage(); await PageObjects.dashboard.clickNewDashboard(); diff --git a/test/functional/apps/visualize/_region_map.js b/test/functional/apps/visualize/_region_map.js index 2f58b38c79f..92b7acd16cf 100644 --- a/test/functional/apps/visualize/_region_map.js +++ b/test/functional/apps/visualize/_region_map.js @@ -33,7 +33,9 @@ import expect from '@osd/expect'; export default function ({ getService, getPageObjects }) { - describe('vector map', function () { + // TODO: [RENAMEME] Re-enable once a valid maps service is in place. + // See: https://github.com/opensearch-project/OpenSearch-Dashboards/issues/221 + xdescribe('vector map', function () { const inspector = getService('inspector'); const log = getService('log'); const find = getService('find'); diff --git a/test/functional/apps/visualize/_tile_map.js b/test/functional/apps/visualize/_tile_map.js index 12fa012dbba..6408c0818b4 100644 --- a/test/functional/apps/visualize/_tile_map.js +++ b/test/functional/apps/visualize/_tile_map.js @@ -69,7 +69,9 @@ export default function ({ getService, getPageObjects }) { }); }); - describe('complete config', function describeIndexTests() { + // TODO: [RENAMEME] Re-enable once a valid maps service is in place. + // See: https://github.com/opensearch-project/OpenSearch-Dashboards/issues/221 + xdescribe('complete config', function describeIndexTests() { before(async function () { await browser.setWindowSize(1280, 1000); @@ -240,7 +242,9 @@ export default function ({ getService, getPageObjects }) { }); }); - describe('zoom warning behavior', function describeIndexTests() { + // TODO: [RENAMEME] Re-enable once a valid maps service is in place. + // See: https://github.com/opensearch-project/OpenSearch-Dashboards/issues/221 + xdescribe('zoom warning behavior', function describeIndexTests() { // Zoom warning is only applicable to OSS this.tags(['skipCloud', 'skipFirefox']);