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>2023-06-02 00:07:58 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-06-02 00:07:58 +0300
commit3ddb72a5ab59d56cb9e9cb27a5abb92bc5074544 (patch)
tree222afa7cff12916d6de0b8e10cc7cd12be886082 /spec/frontend/super_sidebar/components/global_search/command_palette/__snapshots__
parent1bafcd6a59a26557e5752dd3ec6fa9e793986036 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/super_sidebar/components/global_search/command_palette/__snapshots__')
-rw-r--r--spec/frontend/super_sidebar/components/global_search/command_palette/__snapshots__/user_autocomplete_item_spec.js.snap34
1 files changed, 34 insertions, 0 deletions
diff --git a/spec/frontend/super_sidebar/components/global_search/command_palette/__snapshots__/user_autocomplete_item_spec.js.snap b/spec/frontend/super_sidebar/components/global_search/command_palette/__snapshots__/user_autocomplete_item_spec.js.snap
new file mode 100644
index 00000000000..431cdce2955
--- /dev/null
+++ b/spec/frontend/super_sidebar/components/global_search/command_palette/__snapshots__/user_autocomplete_item_spec.js.snap
@@ -0,0 +1,34 @@
+// Jest Snapshot v1, https://goo.gl/fbAQLP
+
+exports[`UserAutocompleteItem should render user item 1`] = `
+<div
+ class="gl-display-flex gl-align-items-center"
+>
+ <gl-avatar-stub
+ alt="avatar"
+ aria-hidden="true"
+ class="gl-mr-3"
+ entityid="37"
+ entityname="Cole Dickinson"
+ shape="rect"
+ size="16"
+ src="https://www.gravatar.com/avatar/a9638f4ec70148d51e56bf05ad41e993?s=80&d=identicon"
+ />
+
+ <span
+ class="gl-display-flex gl-flex-direction-column"
+ >
+ <span
+ class="gl-text-gray-900"
+ >
+ Cole Dickinson
+ </span>
+
+ <span
+ class="gl-font-sm gl-text-gray-500"
+ >
+ reported_user_14
+ </span>
+ </span>
+</div>
+`;