]> source.dussan.org Git - sonarqube.git/blob
9ca42296767d5f3fa0bd3491f6d3b9267b806502
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <div
5   className="little-spacer-top"
6 >
7   <a
8     className="concise-issue-locations-navigator-location"
9     href="#"
10     onClick={[Function]}
11   >
12     <LocationIndex
13       selected={true}
14     >
15       1
16     </LocationIndex>
17     <LocationMessage
18       selected={true}
19     />
20   </a>
21 </div>
22 `;
23
24 exports[`should render vulnerabilities correctly 1`] = `
25 <div
26   className="little-spacer-top"
27 >
28   <a
29     className="concise-issue-locations-navigator-location"
30     href="#"
31     onClick={[Function]}
32   >
33     <LocationIndex
34       selected={true}
35     >
36       1
37     </LocationIndex>
38     <LocationMessage
39       selected={true}
40     >
41       source: 
42     </LocationMessage>
43   </a>
44 </div>
45 `;
46
47 exports[`should render vulnerabilities correctly 2`] = `
48 <div
49   className="little-spacer-top"
50 >
51   <a
52     className="concise-issue-locations-navigator-location"
53     href="#"
54     onClick={[Function]}
55   >
56     <LocationIndex
57       selected={true}
58     >
59       2
60     </LocationIndex>
61     <LocationMessage
62       selected={true}
63     />
64   </a>
65 </div>
66 `;
67
68 exports[`should render vulnerabilities correctly 3`] = `
69 <div
70   className="little-spacer-top"
71 >
72   <a
73     className="concise-issue-locations-navigator-location"
74     href="#"
75     onClick={[Function]}
76   >
77     <LocationIndex
78       selected={true}
79     >
80       4
81     </LocationIndex>
82     <LocationMessage
83       selected={true}
84     >
85       sink: 
86     </LocationMessage>
87   </a>
88 </div>
89 `;