[Security Solution] Unskip failing tests in Policy and Metadata (#165242)

## Summary

Unskip tests that were skipped during a package release that was rolled
back.


### Checklist

- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
This commit is contained in:
Kevin Logan 2023-09-06 07:38:44 -04:00 committed by GitHub
parent ba5a049675
commit 782ab866b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View file

@ -61,8 +61,7 @@ describe.skip('Endpoint Policy Response', () => {
login();
});
// TODO failing test skipped https://github.com/elastic/kibana/issues/162428
describe.skip('from Fleet Agent Details page', () => {
describe('from Fleet Agent Details page', () => {
it('should display policy response with errors', () => {
navigateToFleetAgentDetails(endpointMetadata.agent.id);

View file

@ -44,8 +44,7 @@ export default function ({ getService }: FtrProviderContext) {
const endpointTestResources = getService('endpointTestResources');
describe('test metadata apis', () => {
// FLAKY: https://github.com/elastic/kibana/issues/151854
describe.skip('list endpoints GET route', () => {
describe('list endpoints GET route', () => {
const numberOfHostsInFixture = 2;
let agent1Timestamp: number;
let agent2Timestamp: number;