[Security Solution] Skip Defend Workflows Cypress tests due to package installation issue (#154813)

## Summary

Skipping additional cypress tests due to ES promotion issue here:
https://github.com/elastic/kibana/issues/154741

Will re-enable once ES issue is resolved.

### 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
This commit is contained in:
Kevin Logan 2023-04-12 09:44:55 -04:00 committed by GitHub
parent 54f8ca1a33
commit 665c9dd690
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 10 additions and 10 deletions

View file

@ -69,7 +69,7 @@ const visitPolicyDetailsPage = () => {
cy.get('#settings').should('exist'); // waiting for Policy Settings tab
};
describe('Artifact tabs in Policy Details page', () => {
describe.skip('Artifact tabs in Policy Details page', () => {
before(() => {
login();
loadEndpointDataForEventFiltersIfNeeded();

View file

@ -34,7 +34,7 @@ const loginWithoutAccess = (url: string) => {
cy.visit(url);
};
describe('Artifacts pages', () => {
describe.skip('Artifacts pages', () => {
before(() => {
login();
loadEndpointDataForEventFiltersIfNeeded();

View file

@ -8,7 +8,7 @@
import { closeAllToasts } from '../../tasks/close_all_toasts';
import { login } from '../../tasks/login';
describe('When defining a kibana role for Endpoint security access', () => {
describe.skip('When defining a kibana role for Endpoint security access', () => {
const getAllSubFeatureRows = (): Cypress.Chainable<JQuery<HTMLElement>> => {
return cy
.get('#featurePrivilegeControls_siem')

View file

@ -8,7 +8,7 @@
import { login } from '../../tasks/login';
import { runEndpointLoaderScript } from '../../tasks/run_endpoint_loader';
describe('Endpoints page', () => {
describe.skip('Endpoints page', () => {
before(() => {
runEndpointLoaderScript();
});

View file

@ -20,7 +20,7 @@ import { indexNewCase } from '../../tasks/index_new_case';
import { indexEndpointHosts } from '../../tasks/index_endpoint_hosts';
import { indexEndpointRuleAlerts } from '../../tasks/index_endpoint_rule_alerts';
describe('When accessing Endpoint Response Console', () => {
describe.skip('When accessing Endpoint Response Console', () => {
const performResponderSanityChecks = () => {
openResponderActionLogFlyout();
// Ensure the popover in the action log date quick select picker is accessible

View file

@ -17,7 +17,7 @@ import { cleanupRule, generateRandomStringName, loadRule } from '../../tasks/api
import { RESPONSE_ACTION_TYPES } from '../../../../../common/detection_engine/rule_response_actions/schemas';
import { loginWithRole, ROLE } from '../../tasks/login';
describe('Response actions', () => {
describe.skip('Response actions', () => {
describe('User with no access can not create an endpoint response action', () => {
before(() => {
loginWithRole(ROLE.endpoint_response_actions_no_access);

View file

@ -24,7 +24,7 @@ export default function ({ getService }: FtrProviderContext) {
const endpointPolicyTestResources = getService('endpointPolicyTestResources');
const endpointArtifactTestResources = getService('endpointArtifactTestResources');
describe('Endpoint artifacts (via lists plugin): Blocklists', () => {
describe.skip('Endpoint artifacts (via lists plugin): Blocklists', () => {
let fleetEndpointPolicy: PolicyTestResourceInfo;
before(async () => {

View file

@ -25,7 +25,7 @@ export default function ({ getService }: FtrProviderContext) {
const endpointPolicyTestResources = getService('endpointPolicyTestResources');
const endpointArtifactTestResources = getService('endpointArtifactTestResources');
describe('Endpoint artifacts (via lists plugin): Event Filters', () => {
describe.skip('Endpoint artifacts (via lists plugin): Event Filters', () => {
let fleetEndpointPolicy: PolicyTestResourceInfo;
before(async () => {

View file

@ -28,7 +28,7 @@ export default function ({ getService }: FtrProviderContext) {
const endpointPolicyTestResources = getService('endpointPolicyTestResources');
const endpointArtifactTestResources = getService('endpointArtifactTestResources');
describe('Endpoint Host Isolation Exceptions artifacts (via lists plugin)', () => {
describe.skip('Endpoint Host Isolation Exceptions artifacts (via lists plugin)', () => {
let fleetEndpointPolicy: PolicyTestResourceInfo;
let hostIsolationExceptionData: ArtifactTestData;

View file

@ -24,7 +24,7 @@ export default function ({ getService }: FtrProviderContext) {
const endpointPolicyTestResources = getService('endpointPolicyTestResources');
const endpointArtifactTestResources = getService('endpointArtifactTestResources');
describe('Endpoint artifacts (via lists plugin): Trusted Applications', () => {
describe.skip('Endpoint artifacts (via lists plugin): Trusted Applications', () => {
let fleetEndpointPolicy: PolicyTestResourceInfo;
before(async () => {