]> source.dussan.org Git - sonarqube.git/blob
0d0e57cdbde1e52499c9e69f57d870db1c78c287
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: closed 1`] = `
4 <BoxedGroupAccordion
5   className="big-spacer-bottom"
6   onClick={[Function]}
7   open={false}
8   title={
9     <h3>
10       Azure Project
11     </h3>
12   }
13 />
14 `;
15
16 exports[`should render correctly: loading 1`] = `
17 <BoxedGroupAccordion
18   className="big-spacer-bottom open"
19   onClick={[Function]}
20   open={true}
21   title={
22     <h3>
23       Azure Project
24     </h3>
25   }
26 >
27   <DeferredSpinner
28     loading={true}
29   >
30     <div
31       className="display-flex-wrap"
32     />
33     <ListFooter
34       count={0}
35       loadMore={[Function]}
36       total={0}
37     />
38   </DeferredSpinner>
39 </BoxedGroupAccordion>
40 `;
41
42 exports[`should render correctly: with a repository 1`] = `
43 <BoxedGroupAccordion
44   className="big-spacer-bottom open"
45   onClick={[Function]}
46   open={true}
47   title={
48     <h3>
49       Azure Project
50     </h3>
51   }
52 >
53   <DeferredSpinner
54     loading={false}
55   >
56     <div
57       className="display-flex-wrap"
58     >
59       <div
60         className="abs-width-400 overflow-hidden spacer-top spacer-bottom"
61         key="Azure repo 1"
62       >
63         <strong
64           className="text-ellipsis"
65           title="Azure repo 1"
66         >
67           Azure repo 1
68         </strong>
69       </div>
70     </div>
71     <ListFooter
72       count={1}
73       loadMore={[Function]}
74       total={1}
75     />
76   </DeferredSpinner>
77 </BoxedGroupAccordion>
78 `;