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

packages_list_app_spec.js.snap « __snapshots__ « components « list « components « infrastructure_registry « packages_and_registries « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 009d9c959cb5d419fafcf2d9a9c4c0b4056c2c1c (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
49
50
51
52
53
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`packages_list_app renders 1`] = `
<div>
  <infrastructure-title-stub
    count="1"
    helpurl="foo"
  />
  <infrastructure-search-stub />
  <div>
    <section
      class="gl-display-flex gl-empty-state gl-flex-direction-column gl-text-center"
    >
      <div
        class="gl-max-w-full"
      >
        <img
          alt=""
          class="gl-dark-invert-keep-hue gl-max-w-full"
          height="144"
          src="helpSvg"
        />
      </div>
      <div
        class="gl-empty-state-content gl-m-auto gl-mx-auto gl-my-0 gl-p-5"
        data-testid="gl-empty-state-content"
      >
        <h1
          class="gl-font-size-h-display gl-line-height-36 gl-mb-0 gl-mt-0 h4"
        >
          There are no packages yet
        </h1>
        <p
          class="gl-mb-0 gl-mt-4"
        >
          Learn how to
          <b-link-stub
            class="gl-link"
            href="helpUrl"
            target="_blank"
          >
            publish and share your packages
          </b-link-stub>
          with GitLab.
        </p>
        <div
          class="gl-display-flex gl-flex-wrap gl-justify-content-center gl-mt-5"
        />
      </div>
    </section>
  </div>
</div>
`;