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

expires_at_field_spec.js.snap « __snapshots__ « components « access_tokens « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 42818c14029a874087265130a07250c8121d49c5 (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[`~/access_tokens/components/expires_at_field should render datepicker with input info 1`] = `
<gl-form-group-stub
  label="Expiration date"
  label-for="personal_access_token_expires_at"
  labeldescription=""
  optionaltext="(optional)"
>
  <gl-datepicker-stub
    arialabel=""
    autocomplete=""
    container=""
    data-qa-selector="expiry_date_field"
    defaultdate="Wed Aug 05 2020 00:00:00 GMT+0000 (Greenwich Mean Time)"
    displayfield="true"
    firstday="0"
    inputid="personal_access_token_expires_at"
    inputlabel="Enter date"
    inputname="personal_access_token[expires_at]"
    mindate="Mon Jul 06 2020 00:00:00 GMT+0000 (Greenwich Mean Time)"
    placeholder="YYYY-MM-DD"
    showclearbutton="true"
    size="medium"
    theme=""
  />
</gl-form-group-stub>
`;