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

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

exports[`SidebarTodo template renders component container element with proper data attributes 1`] = `
<button
  aria-label="Mark as done"
  class="btn btn-default btn-todo issuable-header-btn float-right"
  data-boundary="viewport"
  data-container="body"
  data-issuable-id="1"
  data-issuable-type="epic"
  data-original-title=""
  data-placement="left"
  title=""
  type="button"
>
  <gl-icon-stub
    class="todo-undone"
    name="todo-done"
    size="16"
    style="display: none;"
  />
   
  <span
    class="issuable-todo-inner"
  >
    Mark as done
  </span>
   
  <gl-loading-icon-stub
    color="dark"
    inline="true"
    label="Loading"
    size="sm"
    style="display: none;"
  />
</button>
`;