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>2020-05-13 18:08:23 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-13 18:08:23 +0300
commit868e4e69bba7d3ddc2bf4899ee45d6c377a8e536 (patch)
tree921098180de1fbf8e58cfaeade0d0999177b0ce6 /spec/frontend/vue_shared/components/user_avatar
parent41e8b05e8d06f4b13a984e4a3ad26e9a48294543 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/vue_shared/components/user_avatar')
-rw-r--r--spec/frontend/vue_shared/components/user_avatar/user_avatar_svg_spec.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/spec/frontend/vue_shared/components/user_avatar/user_avatar_svg_spec.js b/spec/frontend/vue_shared/components/user_avatar/user_avatar_svg_spec.js
deleted file mode 100644
index ee6c2e2cc46..00000000000
--- a/spec/frontend/vue_shared/components/user_avatar/user_avatar_svg_spec.js
+++ /dev/null
@@ -1,27 +0,0 @@
-import { shallowMount } from '@vue/test-utils';
-import UserAvatarSvg from '~/vue_shared/components/user_avatar/user_avatar_svg.vue';
-
-describe('User Avatar Svg Component', () => {
- describe('Initialization', () => {
- let wrapper;
-
- beforeEach(() => {
- wrapper = shallowMount(UserAvatarSvg, {
- propsData: {
- size: 99,
- svg:
- '<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M1.707 15.707C1.077z"/></svg>',
- },
- });
- });
-
- afterEach(() => {
- wrapper.destroy();
- });
-
- it('should have <svg> as a child element', () => {
- expect(wrapper.element.tagName).toEqual('svg');
- expect(wrapper.html()).toContain('<path');
- });
- });
-});