summaryrefslogtreecommitdiff
path: root/spec/frontend/incidents_settings/components/__snapshots__/alerts_form_spec.js.snap
blob: cab2165b5db5b1bd2f5050d39d00f3ecbe8e2ed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Alert integration settings form default state should match the default snapshot 1`] = `
<div>
  <p>
    <gl-sprintf-stub
      message="Action to take when receiving an alert. %{docsLink}"
    />
  </p>
   
  <form>
    <gl-form-group-stub
      class="gl-pl-0"
    >
      <gl-form-checkbox-stub
        checked="true"
        data-qa-selector="create_issue_checkbox"
      >
        <span>
          Create an issue. Issues are created for each alert triggered.
        </span>
      </gl-form-checkbox-stub>
    </gl-form-group-stub>
     
    <gl-form-group-stub
      class="col-8 col-md-9 gl-px-6"
      label-for="alert-integration-settings-issue-template"
      label-size="sm"
    >
      <label
        class="gl-display-inline-flex"
        for="alert-integration-settings-issue-template"
      >
        
        Issue template (optional)
        
        <gl-link-stub
          href="/help/user/project/description_templates#creating-issue-templates"
          target="_blank"
        >
          <gl-icon-stub
            name="question"
            size="12"
          />
        </gl-link-stub>
      </label>
       
      <gl-dropdown-stub
        block="true"
        category="tertiary"
        data-qa-selector="incident_templates_dropdown"
        headertext=""
        id="alert-integration-settings-issue-template"
        size="medium"
        text="selecte_tmpl"
        variant="default"
      >
        <gl-dropdown-item-stub
          avatarurl=""
          data-qa-selector="incident_templates_item"
          iconcolor=""
          iconname=""
          iconrightname=""
          ischeckitem="true"
          secondarytext=""
        >
          
          No template selected
        
        </gl-dropdown-item-stub>
      </gl-dropdown-stub>
    </gl-form-group-stub>
     
    <gl-form-group-stub
      class="gl-pl-0 gl-mb-5"
    >
      <gl-form-checkbox-stub>
        <span>
          Send a separate email notification to Developers.
        </span>
      </gl-form-checkbox-stub>
    </gl-form-group-stub>
     
    <gl-form-group-stub
      class="gl-pl-0 gl-mb-5"
    >
      <gl-form-checkbox-stub
        checked="true"
      >
        <span>
          Automatically close incident issues when the associated Prometheus alert resolves.
        </span>
      </gl-form-checkbox-stub>
    </gl-form-group-stub>
     
    <div
      class="gl-display-flex gl-justify-content-end"
    >
      <gl-button-stub
        category="primary"
        class="js-no-auto-disable"
        data-qa-selector="save_changes_button"
        icon=""
        size="medium"
        type="submit"
        variant="success"
      >
        
        Save changes
      
      </gl-button-stub>
    </div>
  </form>
</div>
`;