summaryrefslogtreecommitdiff
path: root/spec/frontend/pages/admin/users/components/__snapshots__/user_operation_confirmation_modal_spec.js.snap
blob: dbf8caae357821b404ebf2fb6f3ffc6af02d5f58 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`User Operation confirmation modal renders modal with form included 1`] = `
<gl-modal-stub
  modalclass=""
  modalid="user-operation-modal"
  ok-title="action"
  ok-variant="warning"
  size="md"
  title="title"
  titletag="h4"
>
  <form
    action="/url"
    method="post"
  >
    <span>
      content
    </span>
     
    <input
      name="_method"
      type="hidden"
      value="method"
    />
     
    <input
      name="authenticity_token"
      type="hidden"
      value="csrf"
    />
  </form>
</gl-modal-stub>
`;