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-17 18:09:03 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-03-17 18:09:03 +0300
commitcb840235d7fb4001dab266c614bd2cf59036fe18 (patch)
treeb2c8cfa706d4e2c20dfe6d6e7936deeb3025352c /spec/frontend/vue_shared/components/user_popover
parent359f9c9929177d6ea6c54c19b23959145f177a78 (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 d672b78d682..184a1e458b5 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: 'thumbsup', message_html: 'Hello World' },
+ status: { emoji: 'basketball_player', 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="thumbsup"');
+ expect(wrapper.html()).toContain('<gl-emoji data-name="basketball_player"');
});
it('hides the div when status is null', () => {