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

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

exports[`Project remove modal initialized matches the snapshot 1`] = `
<gl-form-stub
  action="some/path"
  method="post"
>
  <input
    name="_method"
    type="hidden"
    value="delete"
  />
  <input
    name="authenticity_token"
    type="hidden"
  />
  <delete-modal-stub
    confirmphrase="foo"
    forkscount="3"
    issuescount="1"
    mergerequestscount="2"
    starscount="4"
  />
  <gl-button-stub
    buttontextclasses=""
    category="primary"
    data-qa-selector="delete_button"
    icon=""
    size="medium"
    variant="danger"
  >
    Delete project
  </gl-button-stub>
</gl-form-stub>
`;