summaryrefslogtreecommitdiff
path: root/spec/frontend/snippets/components/__snapshots__/snippet_visibility_edit_spec.js.snap
blob: 95da67c2bbf6ee15fd88a381e397fe2b9451de39 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Snippet Visibility Edit component rendering matches the snapshot 1`] = `
<div
  class="form-group"
>
  <label>
    
    Visibility level
    
    <gl-link-stub
      href="/foo/bar"
      target="_blank"
    >
      <gl-icon-stub
        name="question"
        size="12"
      />
    </gl-link-stub>
  </label>
   
  <gl-form-group-stub
    class="gl-mb-0"
    id="visibility-level-setting"
  >
    <gl-form-radio-group-stub
      checked="private"
      disabledfield="disabled"
      htmlfield="html"
      options=""
      stacked=""
      textfield="text"
      valuefield="value"
    >
      <gl-form-radio-stub
        class="mb-3"
        value="private"
      >
        <div
          class="d-flex align-items-center"
        >
          <gl-icon-stub
            name="lock"
            size="16"
          />
           
          <span
            class="font-weight-bold ml-1 js-visibility-option"
            data-qa-selector="visibility_content"
            data-qa-visibility="Private"
          >
            Private
          </span>
        </div>
      </gl-form-radio-stub>
      <gl-form-radio-stub
        class="mb-3"
        value="internal"
      >
        <div
          class="d-flex align-items-center"
        >
          <gl-icon-stub
            name="shield"
            size="16"
          />
           
          <span
            class="font-weight-bold ml-1 js-visibility-option"
            data-qa-selector="visibility_content"
            data-qa-visibility="Internal"
          >
            Internal
          </span>
        </div>
      </gl-form-radio-stub>
      <gl-form-radio-stub
        class="mb-3"
        value="public"
      >
        <div
          class="d-flex align-items-center"
        >
          <gl-icon-stub
            name="earth"
            size="16"
          />
           
          <span
            class="font-weight-bold ml-1 js-visibility-option"
            data-qa-selector="visibility_content"
            data-qa-visibility="Public"
          >
            Public
          </span>
        </div>
      </gl-form-radio-stub>
    </gl-form-radio-group-stub>
  </gl-form-group-stub>
   
  <div
    class="text-muted"
    data-testid="restricted-levels-info"
  >
    <!---->
  </div>
</div>
`;