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

beta_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: 499a971d791f26ec4f7ac5a1eeba4467e72cbe57 (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[`Beta badge component renders the badge 1`] = `
<div>
  <a
    class="badge badge-neutral badge-pill gl-badge gl-cursor-pointer md"
    href="#"
    target="_self"
  >
    Beta
  </a>
  <div
    class="gl-popover"
  >
    <p>
      A Beta feature is not production-ready, but is unlikely to change drastically before it's released. We encourage users to try Beta features and provide feedback.
    </p>
    <p
      class="gl-mb-0"
    >
      A Beta feature:
    </p>
    <ul
      class="gl-pl-4"
    >
      <li>
        May be unstable.
      </li>
      <li>
        Should not cause data loss.
      </li>
      <li>
        Is supported by a commercially reasonable effort.
      </li>
      <li>
        Is complete or near completion.
      </li>
    </ul>
  </div>
</div>
`;