]> source.dussan.org Git - sonarqube.git/blob
591ed49e1c8f97b595c2cc8d33b9fb909594b823
[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       <FormattedRelative
39         updateInterval={10000}
40         value="2016-12-01"
41       />
42       <DateTimeFormatter
43         date="2017-01-01"
44       />
45     </div>
46   </div>
47   <div
48     className="boxed-group-inner"
49   >
50     <ProjectCardLeakMeasures
51       measures={
52         Object {
53           "alert_status": "OK",
54           "new_bugs": 12,
55           "reliability_rating": "1.0",
56           "sqale_rating": "1.0",
57         }
58       }
59     />
60   </div>
61 </div>
62 `;