summaryrefslogtreecommitdiff
path: root/spec/frontend/jira_connect/components/__snapshots__/group_item_name_spec.js.snap
blob: 21c903f064d08c5c00f4f702db9b1de95e9f91d6 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`GroupItemName template matches the snapshot 1`] = `
<div
  class="gl-display-flex gl-align-items-center"
>
  <gl-icon-stub
    class="gl-mr-3"
    name="folder-o"
    size="16"
  />
   
  <div
    class="gl-display-none gl-flex-shrink-0 gl-sm-display-flex gl-mr-3"
  >
    <gl-avatar-stub
      alt="avatar"
      entityid="0"
      entityname="Gitlab Org"
      shape="rect"
      size="32"
      src="avatar.png"
    />
  </div>
   
  <div>
    <span
      class="gl-mr-3 gl-text-gray-900! gl-font-weight-bold"
    >
      
      Gitlab Org
    
    </span>
     
    <div>
      <p
        class="gl-mt-2! gl-mb-0 gl-text-gray-600"
      >
        Open source software to collaborate on code
      </p>
    </div>
  </div>
</div>
`;