Skip to content

Commit

Permalink
[8.1] skipping failing tests (#126039) (#127052)
Browse files Browse the repository at this point in the history
* skipping failing tests (#126039)

(cherry picked from commit 1183929)

# Conflicts:
#	x-pack/plugins/security_solution/cypress/integration/users/user_details.spec.ts

* fixes merge conflict
  • Loading branch information
MadameSheema committed Mar 8, 2022
1 parent 5ae6c1b commit 7930fa6
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ describe('Create DataView runtime field', () => {
cleanKibana();
});

it('adds field to alert table', () => {
it.skip('adds field to alert table', () => {
const fieldName = 'field.name.alert.page';
loginAndWaitForPage(ALERTS_URL);
createCustomRuleActivated(getNewRule());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ describe('Timeline scope', () => {
loginAndWaitForPage(TIMELINES_URL);
});

it('correctly loads SIEM data view before and after signals index exists', () => {
it.skip('correctly loads SIEM data view before and after signals index exists', () => {
openTimelineUsingToggle();
openSourcerer('timeline');
isDataViewSelection(siemDataViewTitle);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { refreshPage } from '../../tasks/security_header';

import { ALERTS_URL } from '../../urls/navigation';

describe('Marking alerts as acknowledged', () => {
describe.skip('Marking alerts as acknowledged', () => {
beforeEach(() => {
cleanKibana();
loginAndWaitForPage(ALERTS_URL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { getUnmappedRule } from '../../objects/rule';

import { ALERTS_URL } from '../../urls/navigation';

describe('Alert details with unmapped fields', () => {
describe.skip('Alert details with unmapped fields', () => {
beforeEach(() => {
cleanKibana();
esArchiverLoad('unmapped_fields');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const loadDetectionsPage = (role: ROLES) => {
waitForAlertsToPopulate();
};

describe('Alerts timeline', () => {
describe.skip('Alerts timeline', () => {
before(() => {
// First we login as a privileged user to create alerts.
cleanKibana();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { ALERTS_URL, DETECTIONS_RULE_MANAGEMENT_URL } from '../../urls/navigatio

const EXPECTED_NUMBER_OF_ALERTS = 16;

describe('Alerts generated by building block rules', () => {
describe.skip('Alerts generated by building block rules', () => {
beforeEach(() => {
cleanKibana();
loginAndWaitForPageWithoutDateRange(ALERTS_URL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { refreshPage } from '../../tasks/security_header';

import { ALERTS_URL } from '../../urls/navigation';

describe('Closing alerts', () => {
describe.skip('Closing alerts', () => {
beforeEach(() => {
cleanKibana();
loginAndWaitForPage(ALERTS_URL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { openJsonView, openThreatIndicatorDetails } from '../../tasks/alerts_det
import { ALERTS_URL } from '../../urls/navigation';
import { addsFieldsToTimeline } from '../../tasks/rule_details';

describe('CTI Enrichment', () => {
describe.skip('CTI Enrichment', () => {
before(() => {
cleanKibana();
esArchiverLoad('threat_indicator');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { refreshPage } from '../../tasks/security_header';

import { ALERTS_URL } from '../../urls/navigation';

describe('Alerts timeline', () => {
describe.skip('Alerts timeline', () => {
beforeEach(() => {
cleanKibana();
loginAndWaitForPage(ALERTS_URL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { refreshPage } from '../../tasks/security_header';

import { ALERTS_URL } from '../../urls/navigation';

describe('Opening alerts', () => {
describe.skip('Opening alerts', () => {
beforeEach(() => {
cleanKibana();
loginAndWaitForPage(ALERTS_URL);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ import { activatesRule, getDetails } from '../../tasks/rule_details';

import { RULE_CREATION, DETECTIONS_RULE_MANAGEMENT_URL } from '../../urls/navigation';

describe('Custom detection rules creation', () => {
describe.skip('Custom detection rules creation', () => {
const expectedUrls = getNewRule().referenceUrls.join('');
const expectedFalsePositives = getNewRule().falsePositivesExamples.join('');
const expectedTags = getNewRule().tags.join('');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import { loginAndWaitForPageWithoutDateRange } from '../../tasks/login';

import { RULE_CREATION } from '../../urls/navigation';

describe('Detection rules, EQL', () => {
describe.skip('Detection rules, EQL', () => {
const expectedUrls = getEqlRule().referenceUrls.join('');
const expectedFalsePositives = getEqlRule().falsePositivesExamples.join('');
const expectedTags = getEqlRule().tags.join('');
Expand Down Expand Up @@ -159,7 +159,7 @@ describe('Detection rules, EQL', () => {
});
});

describe('Detection rules, sequence EQL', () => {
describe.skip('Detection rules, sequence EQL', () => {
const expectedNumberOfRules = 1;
const expectedNumberOfSequenceAlerts = '1 alert';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ import { goBackToAllRulesTable, getDetails } from '../../tasks/rule_details';
import { ALERTS_URL, RULE_CREATION } from '../../urls/navigation';
const DEFAULT_THREAT_MATCH_QUERY = '@timestamp >= "now-30d/d"';

describe('indicator match', () => {
describe.skip('indicator match', () => {
describe('Detection rules, Indicator Match', () => {
const expectedUrls = getNewThreatIndicatorRule().referenceUrls.join('');
const expectedFalsePositives = getNewThreatIndicatorRule().falsePositivesExamples.join('');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import { loginAndWaitForPageWithoutDateRange } from '../../tasks/login';

import { RULE_CREATION } from '../../urls/navigation';

describe('Detection rules, machine learning', () => {
describe.skip('Detection rules, machine learning', () => {
const expectedUrls = getMachineLearningRule().referenceUrls.join('');
const expectedFalsePositives = getMachineLearningRule().falsePositivesExamples.join('');
const expectedTags = getMachineLearningRule().tags.join('');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ import { getDetails } from '../../tasks/rule_details';

import { RULE_CREATION } from '../../urls/navigation';

describe('Detection rules, override', () => {
describe.skip('Detection rules, override', () => {
const expectedUrls = getNewOverrideRule().referenceUrls.join('');
const expectedFalsePositives = getNewOverrideRule().falsePositivesExamples.join('');
const expectedTags = getNewOverrideRule().tags.join('');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ import { loginAndWaitForPageWithoutDateRange } from '../../tasks/login';

import { RULE_CREATION } from '../../urls/navigation';

describe('Detection rules, threshold', () => {
describe.skip('Detection rules, threshold', () => {
let rule = getNewThresholdRule();
const expectedUrls = getNewThresholdRule().referenceUrls.join('');
const expectedFalsePositives = getNewThresholdRule().falsePositivesExamples.join('');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../urls/navigation';
import { cleanKibana, reload } from '../../tasks/common';

describe('From alert', () => {
describe.skip('From alert', () => {
const NUMBER_OF_AUDITBEAT_EXCEPTIONS_ALERTS = '1 alert';

beforeEach(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { refreshPage } from '../../tasks/security_header';
import { DETECTIONS_RULE_MANAGEMENT_URL } from '../../urls/navigation';
import { cleanKibana, reload } from '../../tasks/common';

describe('From rule', () => {
describe.skip('From rule', () => {
const NUMBER_OF_AUDITBEAT_EXCEPTIONS_ALERTS = '1';
beforeEach(() => {
cleanKibana();
Expand Down

0 comments on commit 7930fa6

Please sign in to comment.