]> source.dussan.org Git - sonarqube.git/blob
36ad51b85a21d8ab13b4a92b9d61f8dc188da3f7
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render with title 1`] = `
4 .emotion-0 {
5   font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
6   font-size: 1.5rem;
7   line-height: 1.75rem;
8   font-weight: 600;
9   color: rgb(29,33,47);
10 }
11
12 <div>
13   <div>
14     <h2
15       class="emotion-0 emotion-1"
16       id="modal_header_title"
17     >
18       Foo
19     </h2>
20   </div>
21 </div>
22 `;
23
24 exports[`should render with title and description 1`] = `
25 .emotion-0 {
26   font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
27   font-size: 1.5rem;
28   line-height: 1.75rem;
29   font-weight: 600;
30   color: rgb(29,33,47);
31 }
32
33 .emotion-2 {
34   font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
35   font-size: 0.875rem;
36   line-height: 1.25rem;
37   font-weight: 400;
38   margin-top: 0.5rem;
39   color: rgb(62,67,87);
40 }
41
42 <div>
43   <div>
44     <h2
45       class="emotion-0 emotion-1"
46       id="modal_header_title"
47     >
48       Foo
49     </h2>
50     <p
51       class="emotion-2 emotion-3"
52     >
53       Bar
54     </p>
55   </div>
56 </div>
57 `;
58
59 exports[`should use the default title if not provided 1`] = `
60 .emotion-0 {
61   font-family: Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
62   font-size: 1.5rem;
63   line-height: 1.75rem;
64   font-weight: 600;
65   color: rgb(29,33,47);
66 }
67
68 <div>
69   <div>
70     <h2
71       class="emotion-0 emotion-1"
72       id="modal_header_title"
73     >
74       Modal title
75     </h2>
76   </div>
77 </div>
78 `;