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>2022-09-16 21:10:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-09-16 21:10:35 +0300
commit8e359577a7ec5e6a5e1e9f4db1114888c4b0c55a (patch)
tree32c2f4509d804f2e80796c4a6fdc765d7e6ae6de /spec/frontend/batch_comments/components/submit_dropdown_spec.js
parent282e71d66029b153017dab5d33e735078c374c2e (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/batch_comments/components/submit_dropdown_spec.js')
-rw-r--r--spec/frontend/batch_comments/components/submit_dropdown_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/frontend/batch_comments/components/submit_dropdown_spec.js b/spec/frontend/batch_comments/components/submit_dropdown_spec.js
index b28e6d68e40..462ef7e7280 100644
--- a/spec/frontend/batch_comments/components/submit_dropdown_spec.js
+++ b/spec/frontend/batch_comments/components/submit_dropdown_spec.js
@@ -92,7 +92,7 @@ describe('Batch comments submit dropdown', () => {
canApprove | exists | existsText
${true} | ${true} | ${'shows'}
${false} | ${false} | ${'hides'}
- `('it $existsText approve checkbox if can_approve is $canApprove', ({ canApprove, exists }) => {
+ `('$existsText approve checkbox if can_approve is $canApprove', ({ canApprove, exists }) => {
factory({ canApprove });
expect(wrapper.findByTestId('approve_merge_request').exists()).toBe(exists);