Skip to content

Commit

Permalink
[Security Solution] Unskip tests after package fix (elastic#163962)
Browse files Browse the repository at this point in the history
## Summary

Unskips tests that failed due to an unstable package merge.

Unskipping the following:
elastic#163889
elastic#163890
elastic#163883
elastic#159695
elastic#159696

### 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 Aug 16, 2023
1 parent 08a48f3 commit 643ead4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
await pageObjects.endpoint.navigateToEndpointList();
});

// FLAKY: https://github.com/elastic/kibana/issues/163883
describe.skip('when there is data,', () => {
describe('when there is data,', () => {
before(async () => {
indexedData = await endpointTestResources.loadEndpointData({ numHosts: 3 });
await pageObjects.endpoint.navigateToEndpointList();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
.set('kbn-xsrf', 'true');
};

// FLAKY: https://github.com/elastic/kibana/issues/159695
// FLAKY: https://github.com/elastic/kibana/issues/159696
describe.skip('For each artifact list under management', function () {
describe('For each artifact list under management', function () {
this.timeout(60_000 * 5);
let indexedData: IndexedHostsAndAlertsResponse;
let policyInfo: PolicyTestResourceInfo;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const endpointTestResources = getService('endpointTestResources');
const retry = getService('retry');

// FLAKY: https://github.com/elastic/kibana/issues/163889
// FLAKY: https://github.com/elastic/kibana/issues/163890
describe.skip('When on the Endpoint Policy Details Page', function () {
describe('When on the Endpoint Policy Details Page', function () {
let indexedData: IndexedHostsAndAlertsResponse;
const formTestSubjects = getPolicySettingsFormTestSubjects();

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

// FLAKY: https://github.com/elastic/kibana/issues/160274
describe.skip('get metadata transforms', () => {
describe('get metadata transforms', () => {
const testRegex = /endpoint\.metadata_(united|current)-default-*/;

it('should respond forbidden if no fleet access', async () => {
Expand Down

0 comments on commit 643ead4

Please sign in to comment.