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

design_navigation_spec.js.snap « __snapshots__ « toolbar « components « design_management « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5a69b28a8818b86492c2c588b5ed2c590e44a08 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Design management pagination component hides components when designs are empty 1`] = `<!---->`;

exports[`Design management pagination component renders navigation buttons 1`] = `
<div
  class="gl-display-flex gl-align-items-center"
>
  
  0 of 2
  
  <gl-button-group-stub
    class="gl-mx-5"
  >
    <gl-button-stub
      aria-label="Go to previous design"
      buttontextclasses=""
      category="primary"
      class="js-previous-design"
      disabled="true"
      icon="chevron-lg-left"
      size="medium"
      title="Go to previous design"
      variant="default"
    />
     
    <gl-button-stub
      aria-label="Go to next design"
      buttontextclasses=""
      category="primary"
      class="js-next-design"
      icon="chevron-lg-right"
      size="medium"
      title="Go to next design"
      variant="default"
    />
  </gl-button-group-stub>
</div>
`;