]> source.dussan.org Git - sonarqube.git/blob
00802d08bc0b7f4f94dc503cd0769b9b24aaf8a7
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should format the string with highlights 1`] = `<DocumentFragment />`;
4
5 exports[`should format the string with highlights 2`] = `
6 <DocumentFragment>
7   message
8 </DocumentFragment>
9 `;
10
11 exports[`should format the string with highlights 3`] = `
12 <DocumentFragment>
13   message
14 </DocumentFragment>
15 `;
16
17 exports[`should format the string with highlights 4`] = `
18 <DocumentFragment>
19   <span>
20     message
21   </span>
22 </DocumentFragment>
23 `;
24
25 exports[`should format the string with highlights 5`] = `
26 <DocumentFragment>
27   <span>
28     m
29     <span
30       class="issue-message-highlight-CODE"
31     >
32       ess
33     </span>
34     a
35     <span
36       class="issue-message-highlight-CODE"
37     >
38       g
39     </span>
40     e
41   </span>
42 </DocumentFragment>
43 `;
44
45 exports[`should format the string with highlights 6`] = `
46 <DocumentFragment>
47   <span>
48     a somewhat longer message with overlapping ranges
49   </span>
50 </DocumentFragment>
51 `;
52
53 exports[`should format the string with highlights 7`] = `
54 <DocumentFragment>
55   <span>
56     a somewhat longer message with overlapping range
57     <span
58       class="issue-message-highlight-CODE"
59     >
60       s
61     </span>
62   </span>
63 </DocumentFragment>
64 `;
65
66 exports[`should format the string with highlights 8`] = `
67 <DocumentFragment>
68   <span>
69     a somewhat longer message with overlapping ranges
70   </span>
71 </DocumentFragment>
72 `;
73
74 exports[`should format the string with highlights 9`] = `
75 <DocumentFragment>
76   <span>
77     a 
78     <span
79       class="issue-message-highlight-CODE"
80     >
81       somewhat longer message
82     </span>
83      with overlapping ranges
84   </span>
85 </DocumentFragment>
86 `;
87
88 exports[`should format the string with highlights 10`] = `
89 <DocumentFragment>
90   <span>
91     a 
92     <span
93       class="issue-message-highlight-CODE"
94     >
95       somewhat longer message with
96     </span>
97      overlapping ranges
98   </span>
99 </DocumentFragment>
100 `;