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: 359aaacde0b8de739442b7f236c1c193c7c4222b (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
42
43
44
45
46
47
48
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Beta badge component renders the badge 1`] = `
<div>
  <gl-badge-stub
    class="gl-cursor-pointer"
    href="#"
    iconsize="md"
    size="md"
    variant="neutral"
  >
    Beta
  </gl-badge-stub>
  <gl-popover-stub
    cssclasses=""
    data-testid="beta-badge"
    showclosebutton="true"
    target="[Function]"
    title="What's Beta?"
    triggers="hover focus click"
  >
    <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>
  </gl-popover-stub>
</div>
`;