summaryrefslogtreecommitdiff
path: root/spec/frontend/artifacts_settings/components/__snapshots__/keep_latest_artifact_checkbox_spec.js.snap
blob: 2691e11e616bc6af790a5b2121633dacb1431f24 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Keep latest artifact checkbox when application keep latest artifact setting is enabled sets correct setting value in checkbox with query result 1`] = `
<div>
  <!---->
   
  <b-form-checkbox-stub
    checked="true"
    class="gl-form-checkbox"
    value="true"
  >
    <strong
      class="gl-mr-3"
    >
      Keep artifacts from most recent successful jobs
    </strong>
     
    <gl-link-stub
      href="/help/ci/pipelines/job_artifacts"
    >
      More information
    </gl-link-stub>
     
    <p
      class="help-text"
    >
      The latest artifacts created by jobs in the most recent successful pipeline will be stored.
    </p>
  </b-form-checkbox-stub>
</div>
`;