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