Skip to content

Commit

Permalink
Merge branch 'main' into eui-page-deprecated/response-ops
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen authored Oct 9, 2023
2 parents 80a3a10 + fb23474 commit 87bd64b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ export default ({ getService }: FtrProviderContext) => {
});
});

describe('init api', () => {
// FLAKY: https://github.com/elastic/kibana/issues/168376
describe.skip('init api', () => {
it('should return response with success status', async () => {
const response = await riskEngineRoutes.init();
expect(response.body).to.eql({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export const deleteDataStream = (dataStreamName: string) => {
});
};

export const deleteAllDocuments = (target: string) =>
export const deleteAllDocuments = (target: string) => {
refreshIndex(target);

rootRequest({
method: 'POST',
url: `${Cypress.env(
Expand All @@ -49,6 +51,7 @@ export const deleteAllDocuments = (target: string) =>
},
},
});
};

export const createIndex = (indexName: string, properties: Record<string, unknown>) =>
rootRequest({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export default function ({ getService }: FtrProviderContext) {
const endpointTestResources = getService('endpointTestResources');
const log = getService('log');

describe('test metadata apis', () => {
// FLAKY: https://github.com/elastic/kibana/issues/151854
describe.skip('test metadata apis', () => {
describe('list endpoints GET route', () => {
const numberOfHostsInFixture = 2;
let agent1Timestamp: number;
Expand Down

0 comments on commit 87bd64b

Please sign in to comment.