debian-mirror-gitlab/spec/frontend/sidebar/__snapshots__/todo_spec.js.snap

33 lines
652 B
Plaintext
Raw Normal View History

2019-12-21 20:55:43 +05:30
// 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"
2021-03-11 19:13:27 +05:30
class="gl-button btn btn-default btn-todo issuable-header-btn float-right"
2019-12-21 20:55:43 +05:30
data-issuable-id="1"
data-issuable-type="epic"
type="button"
>
2020-11-24 15:15:51 +05:30
<gl-icon-stub
2019-12-21 20:55:43 +05:30
class="todo-undone"
name="todo-done"
size="16"
style="display: none;"
/>
<span
class="issuable-todo-inner"
>
2020-01-01 13:55:28 +05:30
Mark as done
2019-12-21 20:55:43 +05:30
</span>
2020-03-13 15:44:24 +05:30
<gl-loading-icon-stub
2021-01-29 00:20:46 +05:30
color="dark"
2019-12-21 20:55:43 +05:30
inline="true"
label="Loading"
size="sm"
style="display: none;"
/>
</button>
`;