summaryrefslogtreecommitdiff
path: root/spec/frontend
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-14 06:10:00 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-14 06:10:00 +0000
commite761659df2e0bced8ccb707c87aa350c9d30f18d (patch)
tree889cd0837d8047c1669d13afd501f618fb73430d /spec/frontend
parent7ad11b777ab6800474f19cd757ab31130836e570 (diff)
downloadgitlab-ce-e761659df2e0bced8ccb707c87aa350c9d30f18d.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend')
-rw-r--r--spec/frontend/boards/board_card_inner_spec.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/frontend/boards/board_card_inner_spec.js b/spec/frontend/boards/board_card_inner_spec.js
index ab80f306ec5..3ebc51c4bcb 100644
--- a/spec/frontend/boards/board_card_inner_spec.js
+++ b/spec/frontend/boards/board_card_inner_spec.js
@@ -595,5 +595,10 @@ describe('Board card component', () => {
expect(findEpicCountablesTotalWeight().text()).toBe('15');
expect(findEpicProgressTooltip().text()).toBe('10 of 15 weight completed');
});
+
+ it('does not render the move to position icon', () => {
+ createWrapper();
+ expect(findMoveToPositionComponent().exists()).toBe(false);
+ });
});
});