]> source.dussan.org Git - sonarqube.git/blob
ae5a826874a2949dc98c84afc4693f3a443f5cbd
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <DropdownOverlay
5   noPadding={true}
6 >
7   <div
8     className="multi-select"
9   >
10     <div
11       className="menu-search"
12     >
13       <SearchBox
14         autoFocus={true}
15         className="little-spacer-top"
16         minLength={2}
17         onChange={[Function]}
18         placeholder="search.search_for_users"
19         value=""
20       />
21     </div>
22     <SelectList
23       currentItem="luke"
24       items={
25         [
26           "luke",
27           "",
28         ]
29       }
30       onSelect={[MockFunction]}
31     >
32       <SelectListItem
33         item="luke"
34         key="luke"
35       >
36         <withAppStateContext(Avatar)
37           className="spacer-right"
38           name="Skywalker"
39           size={16}
40         />
41         <span
42           className="text-middle"
43           style={
44             {
45               "marginLeft": 24,
46             }
47           }
48         >
49           Skywalker
50         </span>
51       </SelectListItem>
52       <SelectListItem
53         item=""
54         key=""
55       >
56         <span
57           className="text-middle"
58           style={
59             {
60               "marginLeft": undefined,
61             }
62           }
63         >
64           unassigned
65         </span>
66       </SelectListItem>
67     </SelectList>
68   </div>
69 </DropdownOverlay>
70 `;