Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
Browse files Browse the repository at this point in the history
…-fix'
  • Loading branch information
kibanamachine committed Apr 9, 2024
1 parent 2cd37c7 commit 3d67df3
Show file tree
Hide file tree
Showing 2 changed files with 217 additions and 209 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,41 +16,45 @@ import {
} from '../../screens';

// Failing: See https://github.com/elastic/kibana/issues/171643
describe.skip('When on the Endpoint List in Security Essentials PLI', {
tags: ['@serverless'],
env: {
ftrConfig: {
productTypes: [{ product_line: 'security', product_tier: 'essentials' }],
describe.skip(
'When on the Endpoint List in Security Essentials PLI',
{
tags: ['@serverless'],
env: {
ftrConfig: {
productTypes: [{ product_line: 'security', product_tier: 'essentials' }],
},
},
},
}, () => {
describe('and Isolated hosts exist', () => {
let indexedEndpointData: CyIndexEndpointHosts;
() => {
describe('and Isolated hosts exist', () => {
let indexedEndpointData: CyIndexEndpointHosts;

before(() => {
indexEndpointHosts({ isolation: true }).then((response) => {
indexedEndpointData = response;
before(() => {
indexEndpointHosts({ isolation: true }).then((response) => {
indexedEndpointData = response;
});
});
});

after(() => {
if (indexedEndpointData) {
indexedEndpointData.cleanup();
}
});
after(() => {
if (indexedEndpointData) {
indexedEndpointData.cleanup();
}
});

beforeEach(() => {
login();
visitEndpointList();
openRowActionMenu();
});
beforeEach(() => {
login();
visitEndpointList();
openRowActionMenu();
});

it('should display `release` options in host row actions', () => {
getUnIsolateActionMenuItem().should('exist');
});
it('should display `release` options in host row actions', () => {
getUnIsolateActionMenuItem().should('exist');
});

it('should NOT display access to response console', () => {
getConsoleActionMenuItem().should('not.exist');
it('should NOT display access to response console', () => {
getConsoleActionMenuItem().should('not.exist');
});
});
});
});
}
);
Loading

0 comments on commit 3d67df3

Please sign in to comment.