]> source.dussan.org Git - sonarqube.git/blob
101ba72348574832f66ac872a1afe093fd582a29
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should display the leak 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         projects.leak_period_x.a month ago
40       </span>
41       <span
42         className="big-spacer-left"
43       >
44         projects.last_analysis_on_x.March 1, 2017 9:36 AM
45       </span>
46     </div>
47   </div>
48   <div
49     className="boxed-group-inner"
50   >
51     <ProjectCardLeakMeasures
52       measures={
53         Object {
54           "alert_status": "OK",
55           "new_bugs": 12,
56           "reliability_rating": "1.0",
57           "sqale_rating": "1.0",
58         }
59       }
60     />
61   </div>
62 </div>
63 `;