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

directory_download_links_spec.js.snap « __snapshots__ « components « repository « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 836ae5c22e6d2fbbb6b3f328c52f6a8aaf9fc3a7 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Repository directory download links component renders downloads links for path app 1`] = `
<section
  class="border-top pt-1 mt-1"
>
  <h5
    class="m-0 dropdown-bold-header"
  >
    Download this directory
  </h5>
   
  <div
    class="dropdown-menu-content"
  >
    <div
      class="btn-group ml-0 w-100"
    >
      <gl-button-stub
        buttontextclasses=""
        category="primary"
        href="http://test.com/?path=app"
        icon=""
        size="small"
        variant="confirm"
      >
        
        zip
      
      </gl-button-stub>
      <gl-button-stub
        buttontextclasses=""
        category="primary"
        href="http://test.com/?path=app"
        icon=""
        size="small"
        variant="default"
      >
        
        tar
      
      </gl-button-stub>
    </div>
  </div>
</section>
`;

exports[`Repository directory download links component renders downloads links for path app/assets 1`] = `
<section
  class="border-top pt-1 mt-1"
>
  <h5
    class="m-0 dropdown-bold-header"
  >
    Download this directory
  </h5>
   
  <div
    class="dropdown-menu-content"
  >
    <div
      class="btn-group ml-0 w-100"
    >
      <gl-button-stub
        buttontextclasses=""
        category="primary"
        href="http://test.com/?path=app/assets"
        icon=""
        size="small"
        variant="confirm"
      >
        
        zip
      
      </gl-button-stub>
      <gl-button-stub
        buttontextclasses=""
        category="primary"
        href="http://test.com/?path=app/assets"
        icon=""
        size="small"
        variant="default"
      >
        
        tar
      
      </gl-button-stub>
    </div>
  </div>
</section>
`;