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: a7d6145285c28540d419bf8c364e98fa8d4459d1 (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
// 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="d-flex align-items-center"
>
  
  0 of 2
  
  <gl-button-group-stub
    class="ml-3 mr-3"
  >
    <gl-button-stub
      category="primary"
      class="js-previous-design"
      disabled="true"
      icon="angle-left"
      size="medium"
      title="Go to previous design"
      variant="default"
    />
     
    <gl-button-stub
      category="primary"
      class="js-next-design"
      icon="angle-right"
      size="medium"
      title="Go to next design"
      variant="default"
    />
  </gl-button-group-stub>
</div>
`;