mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[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:
parent
92db0d3936
commit
3efb83851f
3 changed files with 6 additions and 3 deletions
|
@ -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,
|
||||
|
|
|
@ -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.';
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue