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/sidebar/confidential/__snapshots__/edit_form_spec.js.snap')
-rw-r--r--spec/frontend/sidebar/confidential/__snapshots__/edit_form_spec.js.snap50
1 files changed, 50 insertions, 0 deletions
diff --git a/spec/frontend/sidebar/confidential/__snapshots__/edit_form_spec.js.snap b/spec/frontend/sidebar/confidential/__snapshots__/edit_form_spec.js.snap
new file mode 100644
index 00000000000..d33f6c7f389
--- /dev/null
+++ b/spec/frontend/sidebar/confidential/__snapshots__/edit_form_spec.js.snap
@@ -0,0 +1,50 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`Edit Form Dropdown when confidential renders on or off text based on confidentiality 1`] = `
+<div
+ class="dropdown show"
+ toggleform="function () {}"
+ updateconfidentialattribute="function () {}"
+>
+ <div
+ class="dropdown-menu sidebar-item-warning-message"
+ >
+ <div>
+ <p>
+ <gl-sprintf-stub
+ message="You are going to turn off the confidentiality. This means %{strongStart}everyone%{strongEnd} will be able to see and leave a comment on this %{issuableType}."
+ />
+ </p>
+
+ <edit-form-buttons-stub
+ confidential="true"
+ fullpath=""
+ />
+ </div>
+ </div>
+</div>
+`;
+
+exports[`Edit Form Dropdown when not confidential renders "You are going to turn on the confidentiality." in the 1`] = `
+<div
+ class="dropdown show"
+ toggleform="function () {}"
+ updateconfidentialattribute="function () {}"
+>
+ <div
+ class="dropdown-menu sidebar-item-warning-message"
+ >
+ <div>
+ <p>
+ <gl-sprintf-stub
+ message="You are going to turn on the confidentiality. This means that only team members with %{strongStart}at least Reporter access%{strongEnd} are able to see and leave comments on the %{issuableType}."
+ />
+ </p>
+
+ <edit-form-buttons-stub
+ fullpath=""
+ />
+ </div>
+ </div>
+</div>
+`;