Skip to content

Commit

Permalink
[7.17] Skip tests failing on Chrome 121+ (elastic#175740) (elastic#17…
Browse files Browse the repository at this point in the history
…8539)

elastic#175740

---------

Co-authored-by: Tiago Costa <tiago.costa@elastic.co>
  • Loading branch information
jbudz and mistic authored Mar 12, 2024
1 parent 23114cd commit e8c63fa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/functional/apps/discover/_discover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
defaultIndex: 'logstash-*',
};

describe('discover test', function describeIndexTests() {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('discover test', function describeIndexTests() {
before(async function () {
log.debug('load kibana index with default index pattern');
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export default function ({ getPageObjects, getService }) {
const inspector = getService('inspector');
const security = getService('security');

describe('search hits', () => {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('search hits', () => {
before(async () => {
await security.testUser.setRoles(
[
Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/functional/apps/maps/es_geo_grid_source.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export default function ({ getPageObjects, getService }) {
const DOC_COUNT_PROP_NAME = 'doc_count';
const security = getService('security');

describe('layer geo grid aggregation source', () => {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('layer geo grid aggregation source', () => {
const DATA_CENTER_LON = -98;
const DATA_CENTER_LAT = 38;

Expand Down

0 comments on commit e8c63fa

Please sign in to comment.