Skip to content

Commit

Permalink
Skip tests failing on Chrome 121+ (#175740)
Browse files Browse the repository at this point in the history
Skipped tests have been forwarded to their corresponding teams for
triage. See
#176882 (comment)
for more information.

---------

Co-authored-by: Tiago Costa <tiago.costa@elastic.co>
  • Loading branch information
jbudz and mistic authored Mar 12, 2024
1 parent abf0937 commit 62da8be
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 10 deletions.
3 changes: 2 additions & 1 deletion test/functional/apps/dashboard/group5/embed_mode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export default function ({
const screenshot = getService('screenshots');
const log = getService('log');

describe('embed mode', () => {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('embed mode', () => {
/*
* Note: The baseline images used in all of the screenshot tests in this test suite were taken directly from the CI environment
* in order to overcome a known issue with the pixel density of fonts being significantly different when running locally versus
Expand Down
3 changes: 2 additions & 1 deletion test/functional/apps/discover/group1/_discover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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
3 changes: 2 additions & 1 deletion test/functional/apps/discover/group1/_url_state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
hideAnnouncements: true,
};

describe('discover URL state', () => {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('discover URL state', () => {
before(async function () {
log.debug('load kibana index with default index pattern');
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover');
Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/functional/apps/lens/group6/workspace_size.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const retry = getService('retry');
const log = getService('log');

describe('lens workspace size', () => {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('lens workspace size', () => {
let originalWindowSize: {
height: number;
width: number;
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
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('geojson vector layer - es geo grid source', () => {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('geojson vector layer - es geo grid source', () => {
const DATA_CENTER_LON = -98;
const DATA_CENTER_LAT = 38;

Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/functional/apps/ml/data_visualizer/data_drift.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await ml.dataDrift.runAnalysis();
}

describe('data drift', async function () {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('data drift', async function () {
before(async () => {
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/ihp_outlier');
await ml.testResources.createDataViewIfNeeded('ft_ihp_outlier');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,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 @@ -32,7 +32,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
const log = getService('log');
const queryBar = getService('queryBar');

describe('discover histogram', function describeIndexTests() {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('discover histogram', function describeIndexTests() {
before(async () => {
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional');
await esArchiver.load('test/functional/fixtures/es_archiver/long_window_logstash');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
expect(await titleElem.getAttribute('value')).to.equal(dataView);
};

describe('Search source Alert', () => {
// Failing: See https://github.com/elastic/kibana/issues/176882
describe.skip('Search source Alert', () => {
before(async () => {
await security.testUser.setRoles(['discover_alert']);
await PageObjects.svlCommonPage.loginAsAdmin();
Expand Down

0 comments on commit 62da8be

Please sign in to comment.