skip flaky suite (#168648)

This commit is contained in:
Tiago Costa 2023-10-11 19:48:42 +01:00
parent 338068bea8
commit e02669dcf3
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA
2 changed files with 4 additions and 2 deletions

View file

@ -91,7 +91,8 @@ export default function ({
});
});
describe('non-default URL params', () => {
// FLAKY: https://github.com/elastic/kibana/issues/168648
describe.skip('non-default URL params', () => {
it('shows or hides elements based on URL params', async () => {
const currentUrl = await browser.getCurrentUrl();
const newUrl = [currentUrl].concat(urlParamExtensions).join('&');

View file

@ -28,7 +28,8 @@ import { loadSavedQuery, cleanupSavedQuery, cleanupPack, loadPack } from '../../
import { request } from '../../tasks/common';
import { ServerlessRoleName } from '../../support/roles';
describe('Packs - Create and Edit', { tags: ['@ess', '@serverless'] }, () => {
// FLAKY
describe.skip('Packs - Create and Edit', { tags: ['@ess', '@serverless'] }, () => {
let savedQueryId: string;
let savedQueryName: string;
let nomappingSavedQueryId: string;