mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[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:
parent
91b5c980d8
commit
4b0ae9633c
1 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue