]> source.dussan.org Git - sonarqube.git/blob
3628f4e3f5e09f9553188a52833871c7b54f8e31
[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     {
8       "top": 120,
9     }
10   }
11 />
12 `;
13
14 exports[`should render correctly: displayed 1`] = `
15 <div
16   className="info-drawer info-drawer-pane open"
17   style={
18     {
19       "top": 120,
20     }
21   }
22 >
23   <div
24     className="close-button"
25   >
26     <ClearButton
27       aria-label="close"
28       onClick={[MockFunction]}
29     />
30   </div>
31   <EscKeydownHandler
32     onKeydown={[MockFunction]}
33   >
34     <OutsideClickHandler
35       onClickOutside={[MockFunction]}
36     >
37       <div
38         className="display-flex-column max-height-100"
39       >
40         <span>
41           content
42         </span>
43       </div>
44     </OutsideClickHandler>
45   </EscKeydownHandler>
46 </div>
47 `;