]> source.dussan.org Git - sonarqube.git/blob
ff77d4e7b33dfdfb93a698a02e365b4abd3123a7
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should display loading 1`] = `
4 <div
5   className="boxed-group project-card boxed-group-loading"
6   data-key="foo"
7 >
8   <div
9     className="boxed-group-actions text-right"
10   />
11   <div
12     className="boxed-group-header"
13   >
14     <h2
15       className="project-card-name"
16     >
17       <Link
18         onlyActiveOnIndex={false}
19         style={Object {}}
20         to={
21           Object {
22             "pathname": "/dashboard",
23             "query": Object {
24               "id": "foo",
25             },
26           }
27         }
28       >
29         Foo
30       </Link>
31     </h2>
32   </div>
33   <div
34     className="boxed-group-inner"
35   >
36     <ProjectCardMeasures />
37   </div>
38 </div>
39 `;
40
41 exports[`should display tags 1`] = `
42 <div
43   className="boxed-group project-card boxed-group-loading"
44   data-key="foo"
45 >
46   <div
47     className="boxed-group-actions text-right"
48   >
49     <TagsList
50       allowUpdate={false}
51       customClass="spacer-left"
52       tags={
53         Array [
54           "foo",
55           "bar",
56         ]
57       }
58     />
59   </div>
60   <div
61     className="boxed-group-header"
62   >
63     <h2
64       className="project-card-name"
65     >
66       <Link
67         onlyActiveOnIndex={false}
68         style={Object {}}
69         to={
70           Object {
71             "pathname": "/dashboard",
72             "query": Object {
73               "id": "foo",
74             },
75           }
76         }
77       >
78         Foo
79       </Link>
80     </h2>
81   </div>
82   <div
83     className="boxed-group-inner"
84   >
85     <ProjectCardMeasures />
86   </div>
87 </div>
88 `;
89
90 exports[`should not display analysis date 1`] = `undefined`;