Skip to content

Commit

Permalink
[Security Solution] Unskip failing tests in Policy and Metadata (elas…
Browse files Browse the repository at this point in the history
…tic#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
  • Loading branch information
kevinlog authored Sep 6, 2023
1 parent ba5a049 commit 782ab86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 782ab86

Please sign in to comment.