Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip tests failing on Chrome 121+ #175740

Merged
merged 19 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Loading