[Security Solution] Skip file operations tests until ES permissions is fixed (#162787)

## Summary

Skip the broken File Operations tests until a permissions issue in ES is
fixed: https://github.com/elastic/kibana/issues/162760

### 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

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Kevin Logan 2023-07-31 13:18:36 -04:00 committed by GitHub
parent 92db0d3936
commit 3efb83851f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View file

@ -47,7 +47,8 @@ describe('CTI Enrichment', () => {
goToRuleDetails();
});
it('Displays enrichment matched.* fields on the timeline', () => {
// Skipped: https://github.com/elastic/kibana/issues/162818
it.skip('Displays enrichment matched.* fields on the timeline', () => {
const expectedFields = {
'threat.enrichments.matched.atomic': indicatorRuleMatchingDoc.atomic,
'threat.enrichments.matched.type': indicatorRuleMatchingDoc.matchedType,

View file

@ -188,7 +188,8 @@ describe('Response console', () => {
});
});
describe('File operations: get-file and execute', () => {
// Broken until this is fixed: https://github.com/elastic/kibana/issues/162760
describe.skip('File operations: get-file and execute', () => {
const homeFilePath = process.env.CI || true ? '/home/vagrant' : `/home/ubuntu`;
const fileContent = 'This is a test file for the get-file command.';

View file

@ -228,7 +228,8 @@ describe('Response console', () => {
});
});
describe('`get-file` command', () => {
// Broken until this is fixed: https://github.com/elastic/kibana/issues/162760
describe.skip('`get-file` command', () => {
let endpointData: ReturnTypeFromChainable<typeof indexEndpointHosts>;
let endpointHostname: string;
let getFileRequestResponse: ActionDetails;