Skip to content

Commit

Permalink
[8.13] Skip tests failing on Chrome 121+ (#175740) (#178510)
Browse files Browse the repository at this point in the history
# Backport

This will backport the following commits from `main` to `8.13`:
- [Skip tests failing on Chrome 121+
(#175740)](#175740)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT
[{"author":{"name":"Jon","email":"jon@elastic.co"},"sourceCommit":{"committedDate":"2024-03-12T14:36:02Z","message":"Skip
tests failing on Chrome 121+ (#175740)\n\nSkipped tests have been
forwarded to their corresponding teams for\r\ntriage.
See\r\nhttps://github.com//issues/176882#issuecomment-1991647927\r\nfor
more information.\r\n\r\n---------\r\n\r\nCo-authored-by: Tiago Costa
<tiago.costa@elastic.co>","sha":"62da8be6f635896625d7702a5ed264bcf8c83f38","branchLabelMapping":{"^v8.14.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:Operations","release_note:skip","auto-backport","v8.13.0","v7.17.19","v8.12.3"],"number":175740,"url":"https://github.com/elastic/kibana/pull/175740","mergeCommit":{"message":"Skip
tests failing on Chrome 121+ (#175740)\n\nSkipped tests have been
forwarded to their corresponding teams for\r\ntriage.
See\r\nhttps://github.com//issues/176882#issuecomment-1991647927\r\nfor
more information.\r\n\r\n---------\r\n\r\nCo-authored-by: Tiago Costa
<tiago.costa@elastic.co>","sha":"62da8be6f635896625d7702a5ed264bcf8c83f38"}},"sourceBranch":"main","suggestedTargetBranches":["8.13","7.17","8.12"],"targetPullRequestStates":[{"branch":"8.13","label":"v8.13.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"7.17","label":"v7.17.19","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"8.12","label":"v8.12.3","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"}]}]
BACKPORT-->

Co-authored-by: Jon <jon@elastic.co>
  • Loading branch information
kibanamachine and jbudz authored Mar 12, 2024
1 parent 4555304 commit 4f2cdce
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 4f2cdce

Please sign in to comment.