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: 23c06dc5e687a7b4062c16a4ad2af439a66dd452 (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
// 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="js-file-title file-title-flex-parent"
  >
    <div
      class="file-header-content"
    >
      <gl-icon-stub
        aria-hidden="true"
        name="doc-text"
        size="16"
      />
       
      <gl-link-stub
        href="http://test.com"
      >
        <strong>
          README.md
        </strong>
      </gl-link-stub>
    </div>
  </div>
   
  <div
    class="blob-viewer"
    data-qa-selector="blob_viewer_content"
  >
    <div>
      <div
        class="blob"
      >
        test
      </div>
    </div>
  </div>
</article>
`;