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

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

exports[`Design reply form component renders button text as "Comment" when creating a comment 1`] = `
<button
  class="btn btn-confirm btn-md disabled gl-button gl-mr-3 gl-w-auto!"
  data-qa-selector="save_comment_button"
  data-track-action="click_button"
  disabled=""
  type="submit"
>
  <span
    class="gl-button-text"
  >
    Comment
  </span>
</button>
`;

exports[`Design reply form component renders button text as "Save comment" when creating a comment 1`] = `
<button
  class="btn btn-confirm btn-md disabled gl-button gl-mr-3 gl-w-auto!"
  data-qa-selector="save_comment_button"
  data-track-action="click_button"
  disabled=""
  type="submit"
>
  <span
    class="gl-button-text"
  >
    Save comment
  </span>
</button>
`;