kibana/x-pack/plugins/observability/public/rules/observability_rule_type_registry_mock.ts
2021-06-15 13:53:42 -05:00

17 lines
644 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { ObservabilityRuleTypeRegistry } from './create_observability_rule_type_registry';
const createRuleTypeRegistryMock = () => ({
getFormatter: () => () => 'a reason',
registerFormatter: () => {},
});
export const createObservabilityRuleTypeRegistryMock = () =>
createRuleTypeRegistryMock() as ObservabilityRuleTypeRegistry &
ReturnType<typeof createRuleTypeRegistryMock>;