diff --git a/x-pack/plugins/uptime/public/lib/alert_types/__tests__/monitor_status.test.ts b/x-pack/plugins/uptime/public/lib/alert_types/__tests__/monitor_status.test.ts
index b06a7cc93f628..e9162a0e609c8 100644
--- a/x-pack/plugins/uptime/public/lib/alert_types/__tests__/monitor_status.test.ts
+++ b/x-pack/plugins/uptime/public/lib/alert_types/__tests__/monitor_status.test.ts
@@ -166,7 +166,18 @@ describe('monitor status alert type', () => {
});
describe('initMonitorStatusAlertType', () => {
- expect(initMonitorStatusAlertType({ autocomplete: {} })).toMatchInlineSnapshot(`
+ expect(
+ initMonitorStatusAlertType({
+ autocomplete: {},
+ store: {
+ dispatch: jest.fn(),
+ getState: jest.fn(),
+ replaceReducer: jest.fn(),
+ subscribe: jest.fn(),
+ [Symbol.observable]: jest.fn(),
+ },
+ })
+ ).toMatchInlineSnapshot(`
Object {
"alertParamsExpression": [Function],
"defaultActionMessage": "{{context.message}}
@@ -174,7 +185,19 @@ describe('monitor status alert type', () => {
{{context.downMonitorsWithGeo}}",
"iconClass": "uptimeApp",
"id": "xpack.uptime.alerts.monitorStatus",
- "name": ,
+ "name":
+
+ ,
"requiresAppContext": true,
"validate": [Function],
}