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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
commit311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch)
tree07e7870bca8aed6d61fdcc810731c50d2c40af47 /spec/frontend/registry/explorer/components/__snapshots__/registry_breadcrumb_spec.js.snap
parent27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff)
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to 'spec/frontend/registry/explorer/components/__snapshots__/registry_breadcrumb_spec.js.snap')
-rw-r--r--spec/frontend/registry/explorer/components/__snapshots__/registry_breadcrumb_spec.js.snap72
1 files changed, 0 insertions, 72 deletions
diff --git a/spec/frontend/registry/explorer/components/__snapshots__/registry_breadcrumb_spec.js.snap b/spec/frontend/registry/explorer/components/__snapshots__/registry_breadcrumb_spec.js.snap
deleted file mode 100644
index f80e2ce6ecc..00000000000
--- a/spec/frontend/registry/explorer/components/__snapshots__/registry_breadcrumb_spec.js.snap
+++ /dev/null
@@ -1,72 +0,0 @@
-// 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>
-`;