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

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

exports[`Work Item Note Body should have the wrapper to show the note body 1`] = `
<div
  class="md note-text"
  data-testid="work-item-note-body"
>
  <p
    data-sourcepos="1:1-1:76"
    dir="auto"
  >
    <gl-emoji
      data-name="wave"
      data-unicode-version="6.0"
      title="waving hand sign"
    >
      👋
    </gl-emoji>
    Hi
    <a
      class="gfm gfm-project_member js-user-link"
      data-container="body"
      data-placement="top"
      data-reference-type="user"
      data-user="3"
      href="/fredda.brekke"
      title="Sherie Nitzsche"
    >
      @fredda.brekke
    </a>
    How are you ? what do you think about this ?
    <gl-emoji
      data-name="pray"
      data-unicode-version="6.0"
      title="person with folded hands"
    >
      🙏
    </gl-emoji>
  </p>
</div>
`;