summaryrefslogtreecommitdiff
path: root/spec/frontend/sidebar/__snapshots__/todo_spec.js.snap
blob: 42012841f0b1dbc1e091f4ed2ba8c43b936239b8 (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="orange"
    inline="true"
    label="Loading"
    size="sm"
    style="display: none;"
  />
</button>
`;