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-03-16 21:11:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-16 21:11:53 +0300
commit889bf7a0eea1f4ac7c2ec28cdfded399c0ca8fb9 (patch)
treebc2f4d2b049c6bcf4d57cef67c43599c8a6ec888 /spec/frontend/vue_shared/components/user_popover
parentdad48b4af20204db430a6c62c4641283e24dd89a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/vue_shared/components/user_popover')
-rw-r--r--spec/frontend/vue_shared/components/user_popover/user_popover_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/vue_shared/components/user_popover/user_popover_spec.js b/spec/frontend/vue_shared/components/user_popover/user_popover_spec.js
index 184a1e458b5..d672b78d682 100644
--- a/spec/frontend/vue_shared/components/user_popover/user_popover_spec.js
+++ b/spec/frontend/vue_shared/components/user_popover/user_popover_spec.js
@@ -183,14 +183,14 @@ describe('User Popover Component', () => {
it('should show message and emoji', () => {
const user = {
...DEFAULT_PROPS.user,
- status: { emoji: 'basketball_player', message_html: 'Hello World' },
+ status: { emoji: 'thumbsup', message_html: 'Hello World' },
};
createWrapper({ user });
expect(findUserStatus().exists()).toBe(true);
expect(wrapper.text()).toContain('Hello World');
- expect(wrapper.html()).toContain('<gl-emoji data-name="basketball_player"');
+ expect(wrapper.html()).toContain('<gl-emoji data-name="thumbsup"');
});
it('hides the div when status is null', () => {