[Security Solution][Endpoint] un-skip permissions FTR tests for endpoint (#115962)

* unskip test suite and skip the Test for Host details - found bug
This commit is contained in:
Paul Tavares 2021-10-21 14:57:30 -04:00 committed by GitHub
parent 91b5c980d8
commit 4b0ae9633c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,8 +20,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const endpointTestResources = getService('endpointTestResources');
const policyTestResources = getService('policyTestResources');
// failing ES promotion: https://github.com/elastic/kibana/issues/110309
describe.skip('Endpoint permissions:', () => {
describe('Endpoint permissions:', () => {
let indexedData: IndexedHostsAndAlertsResponse;
before(async () => {
@ -62,7 +61,8 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
await testSubjects.existOrFail('noIngestPermissions');
});
it('should display endpoint data on Host Details', async () => {
// FIXME:PT skipped. need to fix security-team bug #1929
it.skip('should display endpoint data on Host Details', async () => {
const endpoint = indexedData.hosts[0];
await PageObjects.hosts.navigateToHostDetails(endpoint.host.name);
const endpointSummary = await PageObjects.hosts.hostDetailsEndpointOverviewData();