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

blob_header_filepath_spec.js.snap « __snapshots__ « components « blob « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 292a0da2bfef70081d8c222f12366eda3b3e6ada (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[`Blob Header Filepath rendering matches the snapshot 1`] = `
<div
  class="align-items-center d-flex file-header-content lh-100"
>
  <file-icon-stub
    aria-hidden="true"
    cssclasses="gl-mr-3"
    filemode=""
    filename="foo/bar/dummy.md"
    size="16"
  />
  <strong
    class="file-title-name js-blob-header-filepath mr-1"
    data-qa-selector="file_title_content"
  >
    foo/bar/dummy.md
  </strong>
  <clipboard-button-stub
    category="tertiary"
    cssclass="gl-mr-2"
    gfm="\`foo/bar/dummy.md\`"
    size="medium"
    text="foo/bar/dummy.md"
    title="Copy file path"
    tooltipplacement="top"
    variant="default"
  />
  <small
    class="gl-mr-3"
  >
    a lot
  </small>
</div>
`;