]> source.dussan.org Git - sonarqube.git/blob
d7d34dd05a999202a644cd9b2daa07326a5b5be9
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <div
5   className="info-drawer-page info-drawer-pane display-flex-column overflow-hidden"
6 >
7   <h2
8     className="back-button big-padded bordered-bottom"
9     onClick={[Function]}
10   >
11     <BackIcon
12       className="little-spacer-right"
13     />
14     back
15   </h2>
16 </div>
17 `;
18
19 exports[`should render correctly 2`] = `
20 <div
21   className="info-drawer-page info-drawer-pane display-flex-column overflow-hidden open"
22 >
23   <h2
24     className="back-button big-padded bordered-bottom"
25     onClick={[Function]}
26   >
27     <BackIcon
28       className="little-spacer-right"
29     />
30     back
31   </h2>
32   <div
33     className="overflow-y-auto big-padded"
34   >
35     <div>
36       content
37     </div>
38   </div>
39 </div>
40 `;