From 18b8435318887d3fc6e9f9d305967a953cdd7d3f Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Fri, 21 Feb 2020 06:08:58 +0000 Subject: Add latest changes from gitlab-org/gitlab@master --- .../repository/components/preview/index_spec.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'spec/frontend/repository') diff --git a/spec/frontend/repository/components/preview/index_spec.js b/spec/frontend/repository/components/preview/index_spec.js index 7587ca4186c..6ae323f5c3f 100644 --- a/spec/frontend/repository/components/preview/index_spec.js +++ b/spec/frontend/repository/components/preview/index_spec.js @@ -1,7 +1,10 @@ import { shallowMount } from '@vue/test-utils'; import { GlLoadingIcon } from '@gitlab/ui'; +import { handleLocationHash } from '~/lib/utils/common_utils'; import Preview from '~/repository/components/preview/index.vue'; +jest.mock('~/lib/utils/common_utils'); + let vm; let $apollo; @@ -38,6 +41,22 @@ describe('Repository file preview component', () => { }); }); + it('handles hash after render', () => { + factory({ + webUrl: 'http://test.com', + name: 'README.md', + }); + + vm.setData({ readme: { html: '
test
' } }); + + return vm.vm + .$nextTick() + .then(vm.vm.$nextTick()) + .then(() => { + expect(handleLocationHash).toHaveBeenCalled(); + }); + }); + it('renders loading icon', () => { factory({ webUrl: 'http://test.com', -- cgit v1.2.3