]> source.dussan.org Git - sonarqube.git/blob
85a2744871cec39d4f4bb3f3f9a9a170a818a536
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should not render "show less" 1`] = `
4 <footer
5   className="note spacer-top spacer-bottom text-center"
6 >
7   x_show.15
8 </footer>
9 `;
10
11 exports[`should not render "show more" 1`] = `
12 <footer
13   className="note spacer-top spacer-bottom text-center"
14 >
15   x_show.3
16 </footer>
17 `;
18
19 exports[`should show less 1`] = `
20 <footer
21   className="note spacer-top spacer-bottom text-center"
22 >
23   x_show.15
24   <a
25     className="spacer-left text-muted"
26     href="#"
27     onClick={[Function]}
28   >
29     show_less
30   </a>
31 </footer>
32 `;
33
34 exports[`should show more 1`] = `
35 <footer
36   className="note spacer-top spacer-bottom text-center"
37 >
38   x_show.3
39   <a
40     className="spacer-left text-muted"
41     href="#"
42     onClick={[Function]}
43   >
44     show_more
45   </a>
46 </footer>
47 `;