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

history_item_spec.js.snap « __snapshots__ « registry « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c487754b87993b7cdddb07557c5d52d0ba9f6e1 (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[`History Item renders the correct markup 1`] = `
<li
  class="timeline-entry system-note note-wrapper"
>
  <div
    class="timeline-entry-inner"
  >
    <div
      class="gl--flex-center gl-rounded-full gl-mt-n1 gl-ml-2 gl-w-6 gl-h-6 gl-bg-gray-50 gl-text-gray-600 gl-float-left"
    >
      <gl-icon-stub
        name="pencil"
        size="16"
      />
    </div>
     
    <div
      class="timeline-content"
    >
      <div
        class="note-header"
      >
        <div
          class="note-header-info"
        >
          <div
            data-testid="default-slot"
          />
        </div>
      </div>
       
      <div
        class="note-body"
      >
        <div
          data-testid="body-slot"
        />
      </div>
    </div>
  </div>
</li>
`;