]> source.dussan.org Git - sonarqube.git/blob
15116a710babca24975ba9106e31e284ef79d6c2
[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: importing 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={false}
29   >
30     <div
31       className="display-flex-wrap"
32     >
33       <Radio
34         checked={false}
35         className="display-flex-start spacer-right spacer-bottom create-project-import-bbs-repo overflow-hidden disabled text-muted link-no-underline"
36         key="Azure repo 1"
37         onCheck={[Function]}
38         value="Azure repo 1"
39       >
40         <strong
41           className="text-ellipsis"
42           title="Azure repo 1"
43         >
44           Azure repo 1
45         </strong>
46       </Radio>
47     </div>
48     <ListFooter
49       count={1}
50       loadMore={[Function]}
51       total={1}
52     />
53   </DeferredSpinner>
54 </BoxedGroupAccordion>
55 `;
56
57 exports[`should render correctly: loading 1`] = `
58 <BoxedGroupAccordion
59   className="big-spacer-bottom open"
60   onClick={[Function]}
61   open={true}
62   title={
63     <h3>
64       Azure Project
65     </h3>
66   }
67 >
68   <DeferredSpinner
69     loading={true}
70   >
71     <div
72       className="display-flex-wrap"
73     />
74     <ListFooter
75       count={0}
76       loadMore={[Function]}
77       total={0}
78     />
79   </DeferredSpinner>
80 </BoxedGroupAccordion>
81 `;
82
83 exports[`should render correctly: with a repository 1`] = `
84 <BoxedGroupAccordion
85   className="big-spacer-bottom open"
86   onClick={[Function]}
87   open={true}
88   title={
89     <h3>
90       Azure Project
91     </h3>
92   }
93 >
94   <DeferredSpinner
95     loading={false}
96   >
97     <div
98       className="display-flex-wrap"
99     >
100       <Radio
101         checked={false}
102         className="display-flex-start spacer-right spacer-bottom create-project-import-bbs-repo overflow-hidden"
103         key="Azure repo 1"
104         onCheck={[Function]}
105         value="Azure repo 1"
106       >
107         <strong
108           className="text-ellipsis"
109           title="Azure repo 1"
110         >
111           Azure repo 1
112         </strong>
113       </Radio>
114     </div>
115     <ListFooter
116       count={1}
117       loadMore={[Function]}
118       total={1}
119     />
120   </DeferredSpinner>
121 </BoxedGroupAccordion>
122 `;