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

todo_spec.js.snap « __snapshots__ « todo_toggle « components « sidebar « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 846f45345e7cc5b9649e3733637f06210c192c1b (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
// 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="gl-button btn btn-default btn-todo issuable-header-btn float-right"
  data-issuable-id="1"
  data-issuable-type="epic"
  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>
`;