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

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

exports[`Repository file preview component renders file HTML 1`] = `
<article
  class="file-holder limited-width-container readme-holder"
>
  <div
    class="file-title"
  >
    <i
      aria-hidden="true"
      class="fa fa-file-text-o fa-fw"
    />
     
    <gllink-stub
      href="http://test.com"
    >
      <strong>
        README.md
      </strong>
    </gllink-stub>
  </div>
   
  <div
    class="blob-viewer"
  >
    <div>
      <div
        class="blob"
      >
        test
      </div>
    </div>
  </div>
</article>
`;