summaryrefslogtreecommitdiff
path: root/spec/frontend/registry/explorer/components/__snapshots__/registry_breadcrumb_spec.js.snap
blob: f80e2ce6ecc8bacdeb92d212cf0b46a5cb3dcadc (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Registry Breadcrumb when is not rootRoute renders 1`] = `
<div
  class="gl-breadcrumbs"
>
  <ol
    class="breadcrumb gl-breadcrumb-list"
  >
     
    <li
      class="breadcrumb-item gl-breadcrumb-item"
    >
      <a
        class=""
        href="/"
        target="_self"
      />
    </li>
     
    <span
      class="gl-breadcrumb-separator"
      data-testid="separator"
    >
      <svg
        aria-hidden="true"
        class="gl-icon s8"
        data-testid="angle-right-icon"
        role="img"
      >
        <use
          href="#angle-right"
        />
      </svg>
    </span>
    <li
      class="breadcrumb-item gl-breadcrumb-item"
    >
      <a
        class=""
        href="#"
        target="_self"
      />
    </li>
     
    <!---->
  </ol>
</div>
`;

exports[`Registry Breadcrumb when is rootRoute renders 1`] = `
<div
  class="gl-breadcrumbs"
>
  <ol
    class="breadcrumb gl-breadcrumb-list"
  >
     
    <li
      class="breadcrumb-item gl-breadcrumb-item"
    >
      <a
        class=""
        href="/"
        target="_self"
      />
    </li>
     
    <!---->
  </ol>
</div>
`;