]> source.dussan.org Git - sonarqube.git/blob
1e666cc18545f26c7c4418b4a8ae466adf413c90
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should display the overall measures and quality gate 1`] = `
4 <div
5   className="boxed-group project-card"
6   data-key="foo"
7 >
8   <div
9     className="boxed-group-header clearfix"
10   >
11     <h2
12       className="project-card-name"
13     >
14       <Link
15         onlyActiveOnIndex={false}
16         style={Object {}}
17         to={
18           Object {
19             "pathname": "/dashboard",
20             "query": Object {
21               "id": "foo",
22             },
23           }
24         }
25       >
26         Foo
27       </Link>
28     </h2>
29     <ProjectCardQualityGate
30       status="OK"
31     />
32     <div
33       className="pull-right text-right"
34     />
35     <div
36       className="project-card-dates note text-right pull-right"
37     >
38       <span
39         className="big-spacer-left"
40       >
41         projects.last_analysis_on_x.March 1, 2017 9:36 AM
42       </span>
43     </div>
44   </div>
45   <div
46     className="boxed-group-inner"
47   >
48     <ProjectCardOverallMeasures
49       measures={
50         Object {
51           "alert_status": "OK",
52           "new_bugs": 12,
53           "reliability_rating": "1.0",
54           "sqale_rating": "1.0",
55         }
56       }
57     />
58   </div>
59 </div>
60 `;