]> source.dussan.org Git - sonarqube.git/blob
b13505db6222c13b1a1fe09423b18355af9a9683
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render with tags and admin rights 1`] = `
4 <div
5   className="big-spacer-top project-info-tags"
6 >
7   <Dropdown
8     closeOnClick={false}
9     closeOnClickOutside={true}
10     overlay={
11       <MetaTagsSelector
12         selectedTags={
13           [
14             "foo",
15             "bar",
16           ]
17         }
18         setProjectTags={[Function]}
19       />
20     }
21     overlayPlacement="bottom-left"
22   >
23     <ButtonLink
24       innerRef={[Function]}
25       stopPropagation={true}
26     >
27       <TagsList
28         allowUpdate={true}
29         tags={
30           [
31             "foo",
32             "bar",
33           ]
34         }
35       />
36     </ButtonLink>
37   </Dropdown>
38 </div>
39 `;
40
41 exports[`should render without tags and admin rights 1`] = `
42 <div
43   className="big-spacer-top project-info-tags"
44 >
45   <TagsList
46     allowUpdate={false}
47     className="note"
48     tags={
49       [
50         "no_tags",
51       ]
52     }
53   />
54 </div>
55 `;