diff --git a/x-pack/plugins/security_solution/public/common/components/event_details/__snapshots__/alert_summary_view.test.tsx.snap b/x-pack/plugins/security_solution/public/common/components/event_details/__snapshots__/alert_summary_view.test.tsx.snap index 8772def686122..2c7c820cdd7a3 100644 --- a/x-pack/plugins/security_solution/public/common/components/event_details/__snapshots__/alert_summary_view.test.tsx.snap +++ b/x-pack/plugins/security_solution/public/common/components/event_details/__snapshots__/alert_summary_view.test.tsx.snap @@ -25,8 +25,6 @@ exports[`AlertSummaryView Behavior event code renders additional summary rows 1` } .c2 { - min-width: 138px; - padding: 0 8px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; @@ -116,28 +114,30 @@ exports[`AlertSummaryView Behavior event code renders additional summary rows 1` class="euiTableRow" >
- You are in a dialog, containing options for field kibana.alert.workflow_status. Press tab to navigate options. Press escape to exit. -
-- You are in a dialog, containing options for field @timestamp. Press tab to navigate options. Press escape to exit. + You are in a dialog, containing options for field host.name. Press tab to navigate options. Press escape to exit.
- You are in a dialog, containing options for field kibana.alert.rule.name. Press tab to navigate options. Press escape to exit. + You are in a dialog, containing options for field user.name. Press tab to navigate options. Press escape to exit.
-
-
+
+
- Risk Score -- |
-
-
-
-
-
-
-
- 21
-
-
-
-
-
- - You are in a dialog, containing options for field kibana.alert.risk_score. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
-
-
-
- - host.name -- |
-
-
-
-
-
-
-
-
- windows-native
-
-
-
-
-
- - You are in a dialog, containing options for field host.name. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
-
-
-
- - user.name -- |
-
-
-
-
-
-
-
-
- administrator
-
-
-
-
-
- - You are in a dialog, containing options for field user.name. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
-
-
-
- - source.ip -- |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - You are in a dialog, containing options for field source.ip. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
-
- - - - | -- - - - | -||||
-
-
- - Status -- |
-
-
-
-
-
-
-
-
- open
-
-
-
-
-
- - You are in a dialog, containing options for field kibana.alert.workflow_status. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
- ||||
-
-
- - Timestamp -- |
-
-
-
-
-
-
-
- Nov 25, 2020 @ 15:42:39.417
-
-
-
-
-
-
- - You are in a dialog, containing options for field @timestamp. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
- ||||
-
-
- - Rule -- |
-
-
-
-
-
-
-
-
- xxx
-
-
-
-
-
- - You are in a dialog, containing options for field kibana.alert.rule.name. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
- ||||
-
-
- - Severity -- |
-
-
-
-
-
-
-
-
- low
-
-
-
-
-
- - You are in a dialog, containing options for field kibana.alert.severity. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
- ||||
-
-
- - Risk Score -- |
-
-
-
+
+
-
-
-
-
- 21
-
-
-
-
-
- - You are in a dialog, containing options for field kibana.alert.risk_score. Press tab to navigate options. Press escape to exit. - -
- Filter button
-
-
- Filter out button
-
-
- Overflow button
-
- |
||||
+
@@ -1177,8 +470,9 @@ exports[`AlertSummaryView Memory event code renders additional summary rows 1`]
|
+
@@ -1234,9 +528,10 @@ exports[`AlertSummaryView Memory event code renders additional summary rows 1`]
class="euiTableRow"
>
+
|
@@ -1248,8 +543,9 @@ exports[`AlertSummaryView Memory event code renders additional summary rows 1`]
+
|
@@ -1305,9 +601,10 @@ exports[`AlertSummaryView Memory event code renders additional summary rows 1`]
class="euiTableRow"
>
+
|
@@ -1319,8 +616,9 @@ exports[`AlertSummaryView Memory event code renders additional summary rows 1`]
+
|
diff --git a/x-pack/plugins/security_solution/public/common/components/event_details/alert_summary_view.test.tsx b/x-pack/plugins/security_solution/public/common/components/event_details/alert_summary_view.test.tsx
index c397ac313c48c..1afba4184c412 100644
--- a/x-pack/plugins/security_solution/public/common/components/event_details/alert_summary_view.test.tsx
+++ b/x-pack/plugins/security_solution/public/common/components/event_details/alert_summary_view.test.tsx
@@ -85,7 +85,7 @@ describe('AlertSummaryView', () => {
expect(queryByTestId('summary-view-guide')).not.toBeInTheDocument();
});
});
- test.skip('Memory event code renders additional summary rows', () => {
+ test('Memory event code renders additional summary rows', () => {
const renderProps = {
...props,
data: mockAlertDetailsData.map((item) => {
@@ -107,7 +107,7 @@ describe('AlertSummaryView', () => {
);
expect(container.querySelector('div[data-test-subj="summary-view"]')).toMatchSnapshot();
});
- test.skip('Behavior event code renders additional summary rows', () => {
+ test('Behavior event code renders additional summary rows', () => {
const renderProps = {
...props,
data: mockAlertDetailsData.map((item) => {
diff --git a/x-pack/plugins/security_solution/public/detections/components/rules/step_about_rule/index.test.tsx b/x-pack/plugins/security_solution/public/detections/components/rules/step_about_rule/index.test.tsx
index 01ba47f728e43..3c34897fe2e65 100644
--- a/x-pack/plugins/security_solution/public/detections/components/rules/step_about_rule/index.test.tsx
+++ b/x-pack/plugins/security_solution/public/detections/components/rules/step_about_rule/index.test.tsx
@@ -44,8 +44,7 @@ jest.mock('@elastic/eui', () => {
};
});
-// Failing with rule registry enabled
-describe.skip('StepAboutRuleComponent', () => {
+describe('StepAboutRuleComponent', () => {
let formHook: RuleStepsFormHooks[RuleStep.aboutRule] | null = null;
const setFormHook = |