Skip to content

Commit

Permalink
Fixed merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
YulNaumenko committed Feb 3, 2020
1 parent 21a0631 commit 8d332db
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ describe('alert_details', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

expect(
Expand All @@ -61,6 +63,8 @@ describe('alert_details', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

expect(
Expand All @@ -86,6 +90,8 @@ describe('alert_details', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const actionTypes: ActionType[] = [
Expand Down Expand Up @@ -133,6 +139,8 @@ describe('alert_details', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};
const actionTypes: ActionType[] = [
{
Expand Down Expand Up @@ -181,6 +189,8 @@ describe('alert_details', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

expect(
Expand All @@ -203,6 +213,8 @@ describe('alert_details', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

expect(
Expand All @@ -225,6 +237,8 @@ describe('alert_details', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

expect(
Expand Down Expand Up @@ -252,6 +266,8 @@ describe('enable button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const enableButton = shallow(
Expand All @@ -275,6 +291,8 @@ describe('enable button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const enableButton = shallow(
Expand All @@ -298,6 +316,8 @@ describe('enable button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const disableAlert = jest.fn();
Expand Down Expand Up @@ -330,6 +350,8 @@ describe('enable button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const enableAlert = jest.fn();
Expand Down Expand Up @@ -365,6 +387,8 @@ describe('mute button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const enableButton = shallow(
Expand All @@ -389,6 +413,8 @@ describe('mute button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const enableButton = shallow(
Expand All @@ -413,6 +439,8 @@ describe('mute button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const muteAlert = jest.fn();
Expand Down Expand Up @@ -446,6 +474,8 @@ describe('mute button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const unmuteAlert = jest.fn();
Expand Down Expand Up @@ -479,6 +509,8 @@ describe('mute button', () => {
const alertType = {
id: '.noop',
name: 'No Op',
actionGroups: ['default'],
actionVariables: [],
};

const enableButton = shallow(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { ActionType } from '../../../../../plugins/actions/common';
import { TypeRegistry } from './application/type_registry';
import { SanitizedAlert as Alert, AlertAction } from '../../../alerting/common';
import {
Expand Down

0 comments on commit 8d332db

Please sign in to comment.