summaryrefslogtreecommitdiff
path: root/spec/frontend/projects/components/__snapshots__/project_delete_button_spec.js.snap
blob: a0fd60125464f0ea39efc5fc633159d1c86e6edd (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Project remove modal initialized matches the snapshot 1`] = `
<form
  action="some/path"
  method="post"
>
  <input
    name="_method"
    type="hidden"
    value="delete"
  />
   
  <input
    name="authenticity_token"
    type="hidden"
  />
   
  <gl-button-stub
    buttontextclasses=""
    category="primary"
    icon=""
    role="button"
    size="medium"
    tabindex="0"
    variant="danger"
  >
    Delete project
  </gl-button-stub>
   
  <gl-modal-stub
    actioncancel="[object Object]"
    actionprimary="[object Object]"
    footer-class="gl-bg-gray-10 gl-p-5"
    modalclass=""
    modalid="fakeUniqueId"
    ok-variant="danger"
    size="sm"
    title-class="gl-text-red-500"
    titletag="h4"
  >
     
    <div>
      <gl-alert-stub
        class="gl-mb-5"
        dismisslabel="Dismiss"
        primarybuttonlink=""
        primarybuttontext=""
        secondarybuttonlink=""
        secondarybuttontext=""
        title="You are about to permanently delete this project"
        variant="danger"
      >
        <gl-sprintf-stub
          message="Once a project is permanently deleted it %{strongStart}cannot be recovered%{strongEnd}. Permanently deleting this project will %{strongStart}immediately delete%{strongEnd} its repositories and %{strongStart}all related resources%{strongEnd} including issues, merge requests etc."
        />
      </gl-alert-stub>
       
      <p>
        This action cannot be undone. You will lose the project's repository and all content: issues, merge requests, etc.
      </p>
       
      <p
        class="gl-mb-1"
      >
        Please type the following to confirm:
      </p>
       
      <p>
        <code
          class="gl-white-space-pre-wrap"
        >
          foo
        </code>
      </p>
       
      <gl-form-input-stub
        id="confirm_name_input"
        name="confirm_name_input"
        type="text"
      />
       
    </div>
  </gl-modal-stub>
</form>
`;