mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
[Security Solution] expandable flyout - move visualizations section up (#161549)
This commit is contained in:
parent
33ece6eea8
commit
a792697f41
2 changed files with 19 additions and 19 deletions
|
@ -139,6 +139,23 @@ describe(
|
|||
});
|
||||
});
|
||||
|
||||
describe('visualizations section', () => {
|
||||
it('should display analyzer and session previews', () => {
|
||||
toggleOverviewTabAboutSection();
|
||||
toggleOverviewTabVisualizationsSection();
|
||||
|
||||
cy.log('analyzer graph preview');
|
||||
|
||||
cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_TREE).scrollIntoView();
|
||||
cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_TREE).should('be.visible');
|
||||
|
||||
cy.log('session view preview');
|
||||
|
||||
cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW).scrollIntoView();
|
||||
cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW).should('be.visible');
|
||||
});
|
||||
});
|
||||
|
||||
describe('investigation section', () => {
|
||||
it('should display investigation section', () => {
|
||||
toggleOverviewTabAboutSection();
|
||||
|
@ -321,22 +338,5 @@ describe(
|
|||
cy.get(DOCUMENT_DETAILS_FLYOUT_INSIGHTS_TAB_ENTITIES_CONTENT).should('be.visible'); // TODO update when we can navigate to Prevalence sub tab directly
|
||||
});
|
||||
});
|
||||
|
||||
describe('visualizations section', () => {
|
||||
it('should display analyzer and session previews', () => {
|
||||
toggleOverviewTabAboutSection();
|
||||
toggleOverviewTabVisualizationsSection();
|
||||
|
||||
cy.log('analyzer graph preview');
|
||||
|
||||
cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_TREE).scrollIntoView();
|
||||
cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_ANALYZER_TREE).should('be.visible');
|
||||
|
||||
cy.log('session view preview');
|
||||
|
||||
cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW).scrollIntoView();
|
||||
cy.get(DOCUMENT_DETAILS_FLYOUT_OVERVIEW_TAB_SESSION_PREVIEW).should('be.visible');
|
||||
});
|
||||
});
|
||||
}
|
||||
);
|
||||
|
|
|
@ -21,11 +21,11 @@ export const OverviewTab: FC = memo(() => {
|
|||
<>
|
||||
<AboutSection />
|
||||
<EuiHorizontalRule margin="l" />
|
||||
<VisualizationsSection />
|
||||
<EuiHorizontalRule margin="l" />
|
||||
<InvestigationSection />
|
||||
<EuiHorizontalRule margin="l" />
|
||||
<InsightsSection />
|
||||
<EuiHorizontalRule margin="l" />
|
||||
<VisualizationsSection />
|
||||
</>
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue