Skip to content

Commit

Permalink
skip flaky suite (#168648)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Oct 11, 2023
1 parent 338068b commit e02669d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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 @@ -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('&');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e02669d

Please sign in to comment.