summaryrefslogtreecommitdiff
path: root/spec/frontend/packages_and_registries/container_registry/explorer/components/registry_breadcrumb_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/packages_and_registries/container_registry/explorer/components/registry_breadcrumb_spec.js')
-rw-r--r--spec/frontend/packages_and_registries/container_registry/explorer/components/registry_breadcrumb_spec.js78
1 files changed, 0 insertions, 78 deletions
diff --git a/spec/frontend/packages_and_registries/container_registry/explorer/components/registry_breadcrumb_spec.js b/spec/frontend/packages_and_registries/container_registry/explorer/components/registry_breadcrumb_spec.js
deleted file mode 100644
index e5a8438f23f..00000000000
--- a/spec/frontend/packages_and_registries/container_registry/explorer/components/registry_breadcrumb_spec.js
+++ /dev/null
@@ -1,78 +0,0 @@
-import { mount } from '@vue/test-utils';
-
-import component from '~/packages_and_registries/container_registry/explorer/components/registry_breadcrumb.vue';
-
-describe('Registry Breadcrumb', () => {
- let wrapper;
- const nameGenerator = jest.fn();
-
- const routes = [
- { name: 'list', path: '/', meta: { nameGenerator, root: true } },
- { name: 'details', path: '/:id', meta: { nameGenerator } },
- ];
-
- const mountComponent = ($route) => {
- wrapper = mount(component, {
- mocks: {
- $route,
- $router: {
- options: {
- routes,
- },
- },
- },
- });
- };
-
- beforeEach(() => {
- nameGenerator.mockClear();
- });
-
- afterEach(() => {
- wrapper.destroy();
- wrapper = null;
- });
-
- describe('when is rootRoute', () => {
- beforeEach(() => {
- mountComponent(routes[0]);
- });
-
- it('renders', () => {
- expect(wrapper.element).toMatchSnapshot();
- });
-
- it('contains only a single router-link to list', () => {
- const links = wrapper.findAll('a');
-
- expect(links).toHaveLength(1);
- expect(links.at(0).attributes('href')).toBe('/');
- });
-
- it('the link text is calculated by nameGenerator', () => {
- expect(nameGenerator).toHaveBeenCalledTimes(1);
- });
- });
-
- describe('when is not rootRoute', () => {
- beforeEach(() => {
- mountComponent(routes[1]);
- });
-
- it('renders', () => {
- expect(wrapper.element).toMatchSnapshot();
- });
-
- it('contains two router-links to list and details', () => {
- const links = wrapper.findAll('a');
-
- expect(links).toHaveLength(2);
- expect(links.at(0).attributes('href')).toBe('/');
- expect(links.at(1).attributes('href')).toBe('#');
- });
-
- it('the link text is calculated by nameGenerator', () => {
- expect(nameGenerator).toHaveBeenCalledTimes(2);
- });
- });
-});