mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[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:
parent
54f8ca1a33
commit
665c9dd690
10 changed files with 10 additions and 10 deletions
|
@ -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();
|
||||
|
|
|
@ -34,7 +34,7 @@ const loginWithoutAccess = (url: string) => {
|
|||
cy.visit(url);
|
||||
};
|
||||
|
||||
describe('Artifacts pages', () => {
|
||||
describe.skip('Artifacts pages', () => {
|
||||
before(() => {
|
||||
login();
|
||||
loadEndpointDataForEventFiltersIfNeeded();
|
||||
|
|
|
@ -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')
|
||||
|
|
|
@ -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();
|
||||
});
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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 () => {
|
||||
|
|
|
@ -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 () => {
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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 () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue