]> source.dussan.org Git - sonarqube.git/blob
32a75b432121ce0c965857d31d668dadde31e9fb
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render 1`] = `
4 <div
5   className="sc-stats"
6 >
7   <StatisticCard
8     key="stat-icon"
9     statistic={
10       Object {
11         "icon": "stat-icon",
12         "text": "my stat",
13         "value": 26666,
14       }
15     }
16   />
17 </div>
18 `;
19
20 exports[`should render StatisticCard 1`] = `
21 <div
22   className="sc-stat-card sc-big-spacer-top"
23 >
24   <div
25     className="sc-stat-icon"
26   >
27     <img
28       alt=""
29       height={28}
30       src="/images/sonarcloud/stat-icon.svg"
31     />
32   </div>
33   <div
34     className="sc-stat-content"
35   >
36     <span>
37       my stat
38     </span>
39   </div>
40 </div>
41 `;