Skip to content

Commit

Permalink
Merge branch 'main' into revert-merge-5d1a30a
Browse files Browse the repository at this point in the history
  • Loading branch information
neptunian authored Nov 21, 2024
2 parents 0ecbec7 + cba99de commit ae84fa2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import { createAppMockRenderer } from '../../common/mock';

const showMoreClickMock = jest.fn();

describe('ShowMoreButton', () => {
// FLAKY: https://github.com/elastic/kibana/issues/192672
describe.skip('ShowMoreButton', () => {
let appMockRender: AppMockRenderer;

beforeEach(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ function createMockPackagePolicy(
...props,
};
}
describe('PackagePolicyActionsMenu', () => {
// FLAKY: https://github.com/elastic/kibana/issues/191804
describe.skip('PackagePolicyActionsMenu', () => {
beforeAll(() => {
useMultipleAgentPoliciesMock.mockReturnValue({ canUseMultipleAgentPolicies: false });
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ describe('Home page', () => {
cy.getByTestSubj('inventoryEntityActionOpenInDiscover').click();
cy.url().should(
'include',
"query:'container.id:%20foo%20AND%20entity.definition_id%20:%20builtin*"
"query:'container.id:%20%22foo%22%20AND%20entity.definition_id%20:%20builtin*"
);
});
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ export default ({ getService }: FtrProviderContext) => {
const supertest = getService('supertest');

const utils = EntityStoreUtils(getService);
describe('@ess @skipInServerlessMKI Entity Store APIs', () => {
// Failing: See https://github.com/elastic/kibana/issues/200758
describe.skip('@ess @skipInServerlessMKI Entity Store APIs', () => {
const dataView = dataViewRouteHelpersFactory(supertest);

before(async () => {
Expand Down

0 comments on commit ae84fa2

Please sign in to comment.