]> source.dussan.org Git - sonarqube.git/blob
ac1d95977037f54dc1624f67ed39964276c65afd
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: default 1`] = `
4 <span
5   className=""
6 >
7   Foo
8 </span>
9 `;
10
11 exports[`should render correctly: disabled 1`] = `
12 <Tooltip
13   overlay="foo bar"
14   placement="left"
15 >
16   <span
17     className=""
18   >
19     Bar
20   </span>
21 </Tooltip>
22 `;
23
24 exports[`should render correctly: disabled, with explanation 1`] = `
25 <Tooltip
26   overlay="foo bar"
27   placement="left"
28 >
29   <span
30     className=""
31   >
32     Bar
33     <em
34       className="small little-spacer-left"
35     >
36       (
37       bar baz
38       )
39     </em>
40   </span>
41 </Tooltip>
42 `;
43
44 exports[`should render correctly: no label 1`] = `
45 <span
46   className=""
47 >
48   baz
49 </span>
50 `;