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

experiment_badge_spec.js.snap « __snapshots__ « badges « components « vue_shared « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ad70338f3c7378b26947c3e5b9fe7661c15fd76 (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
35
36
37
38
39
40
41
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Experiment badge component renders the badge 1`] = `
<div>
  <a
    class="badge badge-neutral badge-pill gl-badge gl-cursor-pointer md"
    href="#"
    target="_self"
  >
    Experiment
  </a>
  <div
    class="gl-popover"
  >
    <p>
      An Experiment is a feature that's in the process of being developed. It's not production-ready. We encourage users to try Experimental features and provide feedback.
    </p>
    <p
      class="gl-mb-0"
    >
      An Experiment:
    </p>
    <ul
      class="gl-pl-4"
    >
      <li>
        May be unstable.
      </li>
      <li>
        Can cause data loss.
      </li>
      <li>
        Has no support and might not be documented.
      </li>
      <li>
        Can be removed at any time.
      </li>
    </ul>
  </div>
</div>
`;