Welcome to mirror list, hosted at ThFree Co, Russian Federation.

incidents_settings_tabs_spec.js.snap « __snapshots__ « components « incidents_settings « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1e3c344ce65541ea20234b0c6980c92864e07f57 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`IncidentsSettingTabs should render the component 1`] = `
<section
  class="settings no-animate"
  data-qa-selector="incidents_settings_content"
  id="incident-management-settings"
>
  <div
    class="settings-header"
  >
    <h4
      class="settings-title js-settings-toggle js-settings-toggle-trigger-only"
    >
      
      Incidents
    
    </h4>
     
    <gl-button-stub
      buttontextclasses=""
      category="primary"
      class="js-settings-toggle"
      icon=""
      size="medium"
      variant="default"
    >
      Expand
    </gl-button-stub>
     
    <p>
      
      Fine-tune incident settings and set up integrations with external tools to help better manage incidents.
    
    </p>
  </div>
   
  <div
    class="settings-content"
  >
    <gl-tabs-stub
      queryparamname="tab"
      theme="indigo"
      value="0"
    >
      <!---->
       
      <gl-tab-stub
        title="PagerDuty integration"
        titlelinkclass=""
      >
        <pagerdutysettingsform-stub
          class="gl-pt-3"
          data-testid="PagerDutySettingsForm-tab"
        />
      </gl-tab-stub>
    </gl-tabs-stub>
  </div>
</section>
`;