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: 2abae33bc1975455575bb19be07f623a72906bbd (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`History Item renders the correct markup 1`] = `
<li
  class="timeline-entry system-note note-wrapper gl-mb-6!"
>
  <div
    class="timeline-entry-inner"
  >
    <div
      class="timeline-icon"
    >
      <gl-icon-stub
        name="pencil"
        size="16"
      />
    </div>
     
    <div
      class="timeline-content"
    >
      <div
        class="note-header"
      >
        <span>
          <div
            data-testid="default-slot"
          />
        </span>
      </div>
       
      <div
        class="note-body"
      >
        <div
          data-testid="body-slot"
        />
      </div>
    </div>
  </div>
</li>
`;