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

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

exports[`Delete user modal renders modal with form included 1`] = `
<form
  action=""
  method="post"
>
  <input
    name="_method"
    type="hidden"
    value="delete"
  />
   
  <input
    name="authenticity_token"
    type="hidden"
    value="csrf"
  />
   
  <gl-form-input-stub
    autocomplete="off"
    autofocus=""
    name="username"
    type="text"
    value=""
  />
</form>
`;