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