Skip to content

Commit

Permalink
[Tests] ignore map-related functional tests
Browse files Browse the repository at this point in the history
Ignore map related functional tests temporarily until we have a
replacement for EMS.

See: opensearch-project/OpenSearch-Dashboards#221

Signed-off-by: Kawika Avilla <kavilla414@gmail.com>
  • Loading branch information
kavilla committed Apr 21, 2021
1 parent 8476a2f commit 3a486d1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 3 additions & 1 deletion test/functional/apps/dashboard/dashboard_state.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 3 additions & 1 deletion test/functional/apps/visualize/_region_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
8 changes: 6 additions & 2 deletions test/functional/apps/visualize/_tile_map.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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']);

Expand Down

0 comments on commit 3a486d1

Please sign in to comment.