summaryrefslogtreecommitdiff
path: root/spec/frontend/blob/components/__snapshots__/blob_header_filepath_spec.js.snap
blob: 53815820bbeff5548bff08a68d32485ed8ed87b3 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Blob Header Filepath rendering matches the snapshot 1`] = `
<div
  class="file-header-content d-flex align-items-center lh-100"
>
   
  <file-icon-stub
    aria-hidden="true"
    cssclasses="mr-2"
    filemode=""
    filename="foo/bar/dummy.md"
    size="18"
  />
   
  <strong
    class="file-title-name mr-1 js-blob-header-filepath"
    data-qa-selector="file_title_content"
  >
    foo/bar/dummy.md
  </strong>
   
  <small
    class="mr-2"
  >
    a lot
  </small>
   
  <clipboard-button-stub
    category="tertiary"
    cssclass="btn-clipboard btn-transparent lh-100 position-static"
    gfm="\`foo/bar/dummy.md\`"
    size="medium"
    text="foo/bar/dummy.md"
    title="Copy file path"
    tooltipplacement="top"
  />
</div>
`;