summaryrefslogtreecommitdiff
path: root/spec/frontend/repository/components/preview/__snapshots__/index_spec.js.snap
blob: 8eeae9b8455d2cd427567c4a1486f72d4b71dcd9 (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
// 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"
    >
      <i
        aria-hidden="true"
        class="fa fa-file-text-o fa-fw"
      />
       
      <gl-link-stub
        href="http://test.com"
      >
        <strong>
          README.md
        </strong>
      </gl-link-stub>
    </div>
  </div>
   
  <div
    class="blob-viewer"
  >
    <div>
      <div
        class="blob"
      >
        test
      </div>
    </div>
  </div>
</article>
`;