[7.17] Skip tests failing on Chrome 121+ (#175740) (#178539)

#175740

---------

Co-authored-by: Tiago Costa <tiago.costa@elastic.co>
This commit is contained in:
Jon 2024-03-12 14:30:39 -05:00 committed by GitHub
parent 23114cd779
commit e8c63fa73e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 3 deletions

View file

@ -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');

View file

@ -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(
[

View file

@ -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;