diff --git a/src/core_plugins/kibana/public/home/components/tutorial/__snapshots__/instruction_set.test.js.snap b/src/core_plugins/kibana/public/home/components/tutorial/__snapshots__/instruction_set.test.js.snap
index 69b3cc76896f0..e574f575a5517 100644
--- a/src/core_plugins/kibana/public/home/components/tutorial/__snapshots__/instruction_set.test.js.snap
+++ b/src/core_plugins/kibana/public/home/components/tutorial/__snapshots__/instruction_set.test.js.snap
@@ -169,9 +169,13 @@ exports[`statusCheckState checking status 1`] = `
component="div"
grow={true}
>
-
+
+
+ custom status check description
+
+
-
+
+
+ custom status check description
+
+
,
"key": "checkStatusStep",
- "status": "danger",
+ "status": "complete",
"title": "custom title",
},
]
@@ -420,9 +428,13 @@ exports[`statusCheckState failed status check - no data 1`] = `
component="div"
grow={true}
>
-
+
+
+ custom status check description
+
+
,
"key": "checkStatusStep",
- "status": "warning",
+ "status": "complete",
"title": "custom title",
},
]
@@ -548,9 +560,13 @@ exports[`statusCheckState initial state - no check has been attempted 1`] = `
component="div"
grow={true}
>
-
+
+
+ custom status check description
+
+
-
+
+
+ custom status check description
+
+
-
+
+
+ {statusCheckConfig.text}
+
+
);
+ const stepStatus = statusCheckState === StatusCheckStates.NOT_CHECKED ||
+ statusCheckState === StatusCheckStates.FETCHING ? 'incomplete' : 'complete';
return {
title: statusCheckConfig.title || 'Status Check',
- status: this.getStepStatus(statusCheckState),
+ status: stepStatus,
children: checkStatusStep,
key: 'checkStatusStep'
};