Skip to content

Commit

Permalink
skip the test - as it fails on cloud and windows on snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
rashmivkulkarni committed Feb 11, 2021
1 parent 6fc0795 commit f503be5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x-pack/test/functional/apps/maps/layer_errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ import expect from '@kbn/expect';
export default function ({ getPageObjects }) {
const PageObjects = getPageObjects(['maps', 'header']);

// Flaky test on cloud and windows when run against a snapshot build of 7.11.
// https://github.com/elastic/kibana/issues/91043

describe.skip('layer errors', () => {
before(async () => {
await PageObjects.maps.loadSavedMap('layer with errors');
Expand Down Expand Up @@ -90,7 +87,10 @@ export default function ({ getPageObjects }) {
const MISSING_EMS_ID = 'idThatDoesNotExitForEMSTile';
const LAYER_NAME = 'EMS_tiles';

it('should diplay error message in layer panel', async () => {
// Flaky test on cloud and windows when run against a snapshot build of 7.11.
// https://github.com/elastic/kibana/issues/91043

it.skip('should diplay error message in layer panel', async () => {
const errorMsg = await PageObjects.maps.getLayerErrorText(LAYER_NAME);
expect(errorMsg).to.equal(
`Unable to find EMS tile configuration for id: ${MISSING_EMS_ID}. Kibana is unable to access Elastic Maps Service. Contact your system administrator.`
Expand Down

0 comments on commit f503be5

Please sign in to comment.