]> source.dussan.org Git - sonarqube.git/blob
4bdb4cd70140ea0e2e98f34f79e09846f7f25bc3
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: default 1`] = `
4 <div
5   className="info-drawer info-drawer-pane"
6   style={
7     Object {
8       "top": 120,
9     }
10   }
11 >
12   <div
13     className="close-button"
14   >
15     <ClearButton
16       onClick={[MockFunction]}
17     />
18   </div>
19 </div>
20 `;
21
22 exports[`should render correctly: displayed 1`] = `
23 <div
24   className="info-drawer info-drawer-pane open"
25   style={
26     Object {
27       "top": 120,
28     }
29   }
30 >
31   <div
32     className="close-button"
33   >
34     <ClearButton
35       onClick={[MockFunction]}
36     />
37   </div>
38   <EscKeydownHandler
39     onKeydown={[MockFunction]}
40   >
41     <OutsideClickHandler
42       onClickOutside={[MockFunction]}
43     >
44       <div
45         className="display-flex-column max-height-100"
46       >
47         <span>
48           content
49         </span>
50       </div>
51     </OutsideClickHandler>
52   </EscKeydownHandler>
53 </div>
54 `;