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