]> source.dussan.org Git - sonarqube.git/blob
c554011553ed7d5867dda097350111cf69a72ade
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <header
5   className="page-header"
6 >
7   <withRouter(SearchFilterContainer)
8     query={
9       Object {
10         "search": "test",
11       }
12     }
13   />
14   <div
15     className="page-actions projects-page-actions text-right"
16   >
17     <a
18       className="button js-projects-topbar-open spacer-right"
19       href="#"
20     >
21       projects.view_settings
22     </a>
23     <span>
24       <strong
25         id="projects-total"
26       >
27         12
28       </strong>
29        
30       projects._projects
31     </span>
32   </div>
33 </header>
34 `;
35
36 exports[`should render correctly while loading 1`] = `
37 <header
38   className="page-header"
39 >
40   <withRouter(SearchFilterContainer)
41     isFavorite={true}
42     query={
43       Object {
44         "search": "",
45       }
46     }
47   />
48   <div
49     className="page-actions projects-page-actions text-right"
50   >
51     <a
52       className="button js-projects-topbar-open spacer-right"
53       href="#"
54     >
55       projects.view_settings
56     </a>
57     <i
58       className="spinner spacer-right"
59     />
60     <span>
61       <strong
62         id="projects-total"
63       >
64         2
65       </strong>
66        
67       projects._projects
68     </span>
69   </div>
70 </header>
71 `;