Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ export const deleteIndexedFleetAgents = async (
.deleteByQuery({
index: `${indexedData.fleetAgentsIndex}-*`,
wait_for_completion: true,
conflicts: 'proceed',
query: {
bool: {
filter: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ import { login, ROLE } from '../../../../tasks/login';

const { insightsComponentExists, addConnectorButtonExists } = workflowInsightsSelectors;

// FLAKY: https://github.com/elastic/kibana/issues/239216
describe.skip(
describe(
'Endpoint details',
{
tags: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ export default function ({ getService }: FtrProviderContext) {
}
// @skipInServerlessMKI - this test uses internal index manipulation in before/after hooks
// @skipInServerlessMKI - if you are removing this annotation, make sure to add the test suite to the MKI pipeline in .buildkite/pipelines/security_solution_quality_gate/mki_periodic/mki_periodic_defend_workflows.yml
// Failing: See https://github.com/elastic/kibana/issues/236619
describe.skip('@ess @serverless @skipInServerlessMKI When attempting to call an endpoint api', function () {
describe('@ess @serverless @skipInServerlessMKI When attempting to call an endpoint api', function () {
let indexedData: IndexedHostsAndAlertsResponse;
let actionId = '';
let agentId = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ export default function ({ getService }: FtrProviderContext) {
const utils = getService('securitySolutionUtils');
const endpointTestresources = getService('endpointTestResources');

// Failing: See https://github.com/elastic/kibana/issues/236165
describe.skip('@ess @serverless @skipInServerlessMKI Endpoint policy response api', function () {
describe('@ess @serverless @skipInServerlessMKI Endpoint policy response api', function () {
let adminSupertest: TestAgent;

before(async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const endpointTestResources = getService('endpointTestResources');
const toasts = getService('toasts');

// Failing: See https://github.com/elastic/kibana/issues/236164
describe.skip('When on the Trusted Apps list', function () {
describe('When on the Trusted Apps list', function () {
targetTags(this, ['@ess', '@serverless']);

let indexedData: IndexedHostsAndAlertsResponse;
Expand Down