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: 0b86c10ea460f23576fd457c74c3f12ac256a6b4 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`~/access_tokens/components/expires_at_field should render datepicker with input info 1`] = `
<gl-datepicker-stub
  ariallabel=""
  autocomplete=""
  container=""
  displayfield="true"
  firstday="0"
  inputlabel="Enter date"
  mindate="Mon Jul 06 2020 00:00:00 GMT+0000 (Greenwich Mean Time)"
  placeholder="YYYY-MM-DD"
  theme=""
>
  <gl-form-input-stub
    autocomplete="off"
    class="datepicker gl-datepicker-input"
    data-qa-selector="expiry_date_field"
    id="personal_access_token_expires_at"
    inputmode="none"
    name="personal_access_token[expires_at]"
    placeholder="YYYY-MM-DD"
  />
</gl-datepicker-stub>
`;