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>2024-01-10 09:17:26 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-10 09:17:26 +0300
commit4dfcbb2696bce1a94c0b0fbd7f9e0cef1015f3d2 (patch)
tree50071c95706017018bed80ac5053a03e3695839f /spec/frontend/vue_shared/components
parentfea86fb8bf2339727de5e91ccf17ab105e993dca (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/vue_shared/components')
-rw-r--r--spec/frontend/vue_shared/components/markdown/comment_templates_dropdown_spec.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/frontend/vue_shared/components/markdown/comment_templates_dropdown_spec.js b/spec/frontend/vue_shared/components/markdown/comment_templates_dropdown_spec.js
index 11c57fc5768..01122fe1103 100644
--- a/spec/frontend/vue_shared/components/markdown/comment_templates_dropdown_spec.js
+++ b/spec/frontend/vue_shared/components/markdown/comment_templates_dropdown_spec.js
@@ -98,7 +98,7 @@ describe('Comment templates dropdown', () => {
await selectSavedReply();
expect(trackingSpy).toHaveBeenCalledWith(
- expect.any(String),
+ undefined,
TRACKING_SAVED_REPLIES_USE,
expect.any(Object),
);
@@ -111,7 +111,7 @@ describe('Comment templates dropdown', () => {
await selectSavedReply();
expect(trackingSpy).toHaveBeenCalledWith(
- expect.any(String),
+ undefined,
TRACKING_SAVED_REPLIES_USE_IN_MR,
expect.any(Object),
);
@@ -137,7 +137,7 @@ describe('Comment templates dropdown', () => {
await selectSavedReply();
expect(trackingSpy).toHaveBeenCalledWith(
- expect.any(String),
+ undefined,
TRACKING_SAVED_REPLIES_USE_IN_OTHER,
expect.any(Object),
);