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

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

exports[`ProfilePreferences component should render ProfilePreferences properly 1`] = `
<div
  class="row gl-mt-3 js-preferences-form"
>
  <div
    class="col-sm-12"
  >
    <hr
      data-testid="profile-preferences-integrations-rule"
    />
  </div>
   
  <div
    class="col-lg-4 profile-settings-sidebar"
  >
    <h4
      class="gl-mt-0"
      data-testid="profile-preferences-integrations-heading"
    >
      
      Integrations
    
    </h4>
     
    <p>
      
      Customize integrations with third party services.
    
    </p>
  </div>
   
  <div
    class="col-lg-8"
  >
    <integration-view-stub
      config="[object Object]"
      helplink="http://foo.com/help"
      message="Click %{linkStart}Foo%{linkEnd}!"
      messageurl="http://foo.com"
    />
    <integration-view-stub
      config="[object Object]"
      helplink="http://bar.com/help"
      message="Click %{linkStart}Bar%{linkEnd}!"
      messageurl="http://bar.com"
    />
  </div>
</div>
`;