summaryrefslogtreecommitdiff
path: root/spec/frontend/repository/components/preview/__snapshots__/index_spec.js.snap
blob: 48a4feca1e5a300c9fe7dea3a36bf1b8fa0f58d6 (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
        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"
    itemprop="about"
  >
    <div>
      <div
        class="blob"
      >
        test
      </div>
    </div>
  </div>
</article>
`;