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-12-24 12:10:15 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-24 12:10:15 +0300
commit1bd955a90fa6b1b1296bc10ffca68e350c1b98e3 (patch)
tree1b7e5fd19e66803e082da0738b11c015c5ec7343 /spec/frontend/vue_shared/components/actions_button_spec.js
parentbee2146116d8ad70ccfacc8ffdd041093cef219f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/vue_shared/components/actions_button_spec.js')
-rw-r--r--spec/frontend/vue_shared/components/actions_button_spec.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/frontend/vue_shared/components/actions_button_spec.js b/spec/frontend/vue_shared/components/actions_button_spec.js
index 92c2d8bef0e..2ac4bfda29a 100644
--- a/spec/frontend/vue_shared/components/actions_button_spec.js
+++ b/spec/frontend/vue_shared/components/actions_button_spec.js
@@ -1,5 +1,5 @@
import { shallowMount } from '@vue/test-utils';
-import { GlDropdown, GlButton } from '@gitlab/ui';
+import { GlDropdown, GlDropdownDivider, GlButton } from '@gitlab/ui';
import { createMockDirective, getBinding } from 'helpers/vue_mock_directive';
import ActionsButton from '~/vue_shared/components/actions_button.vue';
@@ -53,7 +53,7 @@ describe('Actions button component', () => {
findDropdown()
.findAll('gl-dropdown-item-stub,gl-dropdown-divider-stub')
.wrappers.map((x) => {
- if (x.is('gl-dropdown-divider-stub')) {
+ if (x.is(GlDropdownDivider)) {
return { type: 'divider' };
}