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:
Diffstat (limited to 'spec/frontend/vue_shared/components/issue/__snapshots__/issue_warning_spec.js.snap')
-rw-r--r--spec/frontend/vue_shared/components/issue/__snapshots__/issue_warning_spec.js.snap62
1 files changed, 0 insertions, 62 deletions
diff --git a/spec/frontend/vue_shared/components/issue/__snapshots__/issue_warning_spec.js.snap b/spec/frontend/vue_shared/components/issue/__snapshots__/issue_warning_spec.js.snap
deleted file mode 100644
index 49b18d3e106..00000000000
--- a/spec/frontend/vue_shared/components/issue/__snapshots__/issue_warning_spec.js.snap
+++ /dev/null
@@ -1,62 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`Issue Warning Component when issue is confidential but not locked renders information about confidential issue 1`] = `
-<span>
-
- This is a confidential issue.
- People without permission will never get a notification.
-
- <gl-link-stub
- href="confidential-path"
- target="_blank"
- >
-
- Learn more
-
- </gl-link-stub>
-</span>
-`;
-
-exports[`Issue Warning Component when issue is locked and confidential renders information about locked and confidential issue 1`] = `
-<span>
- <span>
- This issue is
- <a
- href=""
- rel="noopener noreferrer"
- target="_blank"
- >
- confidential
- </a>
- and
- <a
- href=""
- rel="noopener noreferrer"
- target="_blank"
- >
- locked
- </a>
- .
- </span>
-
- People without permission will never get a notification and won't be able to comment.
-
-</span>
-`;
-
-exports[`Issue Warning Component when issue is locked but not confidential renders information about locked issue 1`] = `
-<span>
-
- This issue is locked.
- Only project members can comment.
-
- <gl-link-stub
- href="locked-path"
- target="_blank"
- >
-
- Learn more
-
- </gl-link-stub>
-</span>
-`;