Skip to content

Commit

Permalink
[Security Solution][Endpoint] Un-skip Endpoint FTR tests as a result …
Browse files Browse the repository at this point in the history
…of ES promotion failures (#125963)

Fixes some issues from #125851
  • Loading branch information
paul-tavares authored Feb 17, 2022
1 parent d64fc1c commit 5555ac7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ import {
export default function (providerContext: FtrProviderContext) {
const { loadTestFile, getService } = providerContext;

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/125851
describe.skip('endpoint', function () {
describe('endpoint', function () {
const ingestManager = getService('ingestManager');
const log = getService('log');
const endpointTestResources = getService('endpointTestResources');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ export default function ({ getService }: FtrProviderContext) {
const endpointPolicyTestResources = getService('endpointPolicyTestResources');
const endpointArtifactTestResources = getService('endpointArtifactTestResources');

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/125851
describe.skip('Endpoint artifacts (via lists plugin): Event Filters', () => {
describe('Endpoint artifacts (via lists plugin): Event Filters', () => {
const USER = ROLES.detections_admin;
let fleetEndpointPolicy: PolicyTestResourceInfo;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ export default function ({ getService }: FtrProviderContext) {
getBody: () => BodyReturnType;
}>;

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/125851
describe.skip('Endpoint Host Isolation Exceptions artifacts (via lists plugin)', () => {
describe('Endpoint Host Isolation Exceptions artifacts (via lists plugin)', () => {
let fleetEndpointPolicy: PolicyTestResourceInfo;
let existingExceptionData: ArtifactTestData;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ export default function ({ getService }: FtrProviderContext) {
const endpointPolicyTestResources = getService('endpointPolicyTestResources');
const endpointArtifactTestResources = getService('endpointArtifactTestResources');

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/125851
describe.skip('Endpoint artifacts (via lists plugin): Trusted Applications', () => {
describe('Endpoint artifacts (via lists plugin): Trusted Applications', () => {
let fleetEndpointPolicy: PolicyTestResourceInfo;

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

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/125851
describe.skip('When attempting to call an endpoint api with no authz', () => {
describe('When attempting to call an endpoint api with no authz', () => {
let loadedData: IndexedHostsAndAlertsResponse;

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

// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/125851
describe.skip('test metadata apis', () => {
describe('test metadata apis', () => {
before(async () => {
await endpointTestResources.setMetadataTransformFrequency('1s');
});
Expand Down

0 comments on commit 5555ac7

Please sign in to comment.