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

design_note_pin_spec.js.snap « __snapshots__ « components « design_management « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4828e8cb3c29d3ad6d0e2edc3a11c97cde22ee7c (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[`Design discussions component should match the snapshot of note when repositioning 1`] = `
<button
  aria-label="Comment form position"
  class="position-absolute btn-transparent comment-indicator"
  style="left: 10px; top: 10px; cursor: move;"
  type="button"
>
  <icon-stub
    name="image-comment-dark"
    size="16"
  />
</button>
`;

exports[`Design discussions component should match the snapshot of note with index 1`] = `
<button
  aria-label="Comment '1' position"
  class="position-absolute js-image-badge badge badge-pill"
  style="left: 10px; top: 10px;"
  type="button"
>
  
    1
  
</button>
`;

exports[`Design discussions component should match the snapshot of note without index 1`] = `
<button
  aria-label="Comment form position"
  class="position-absolute btn-transparent comment-indicator"
  style="left: 10px; top: 10px;"
  type="button"
>
  <icon-stub
    name="image-comment-dark"
    size="16"
  />
</button>
`;