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/notes/__snapshots__/placeholder_note_spec.js.snap')
-rw-r--r--spec/frontend/vue_shared/components/notes/__snapshots__/placeholder_note_spec.js.snap62
1 files changed, 62 insertions, 0 deletions
diff --git a/spec/frontend/vue_shared/components/notes/__snapshots__/placeholder_note_spec.js.snap b/spec/frontend/vue_shared/components/notes/__snapshots__/placeholder_note_spec.js.snap
new file mode 100644
index 00000000000..f3ce03796f9
--- /dev/null
+++ b/spec/frontend/vue_shared/components/notes/__snapshots__/placeholder_note_spec.js.snap
@@ -0,0 +1,62 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`Issue placeholder note component matches snapshot 1`] = `
+<timeline-entry-item-stub
+ class="note note-wrapper being-posted fade-in-half"
+>
+ <div
+ class="timeline-icon"
+ >
+ <user-avatar-link-stub
+ imgalt=""
+ imgcssclasses=""
+ imgsize="40"
+ imgsrc="mock_path"
+ linkhref="/root"
+ tooltipplacement="top"
+ tooltiptext=""
+ username=""
+ />
+ </div>
+
+ <div
+ class="timeline-content discussion"
+ >
+ <div
+ class="note-header"
+ >
+ <div
+ class="note-header-info"
+ >
+ <a
+ href="/root"
+ >
+ <span
+ class="d-none d-sm-inline-block bold"
+ >
+ Root
+ </span>
+
+ <span
+ class="note-headline-light"
+ >
+ @root
+ </span>
+ </a>
+ </div>
+ </div>
+
+ <div
+ class="note-body"
+ >
+ <div
+ class="note-text md"
+ >
+ <p>
+ Foo
+ </p>
+ </div>
+ </div>
+ </div>
+</timeline-entry-item-stub>
+`;