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/work_items/components/work_item_relationships/__snapshots__/work_item_relationship_list_spec.js.snap')
-rw-r--r--spec/frontend/work_items/components/work_item_relationships/__snapshots__/work_item_relationship_list_spec.js.snap29
1 files changed, 29 insertions, 0 deletions
diff --git a/spec/frontend/work_items/components/work_item_relationships/__snapshots__/work_item_relationship_list_spec.js.snap b/spec/frontend/work_items/components/work_item_relationships/__snapshots__/work_item_relationship_list_spec.js.snap
new file mode 100644
index 00000000000..9105e4de5e0
--- /dev/null
+++ b/spec/frontend/work_items/components/work_item_relationships/__snapshots__/work_item_relationship_list_spec.js.snap
@@ -0,0 +1,29 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`WorkItemRelationshipList renders linked item list 1`] = `
+<div>
+ <h4
+ class="gl-font-sm gl-font-weight-semibold gl-mb-2 gl-mt-3 gl-mx-2 gl-text-gray-700"
+ data-testid="work-items-list-heading"
+ >
+ Blocking
+ </h4>
+ <div
+ class="work-items-list-body"
+ >
+ <ul
+ class="content-list work-items-list"
+ >
+ <li
+ class="gl-border-b-0! gl-pb-0! gl-pt-0!"
+ >
+ <work-item-link-child-contents-stub
+ canupdate="true"
+ childitem="[object Object]"
+ childpath="/test-project-path/-/work_items/83"
+ />
+ </li>
+ </ul>
+ </div>
+</div>
+`;