]> source.dussan.org Git - sonarqube.git/blob
364691fe3aad8801a1496a6df25e8e065d803108
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render and select 1`] = `
4 <div
5   aria-label="onboarding.create_organization.choose_plan"
6   className="huge-spacer-bottom"
7   role="radiogroup"
8 >
9   <div>
10     <Radio
11       checked={true}
12       onCheck={[Function]}
13     >
14       <span>
15         billing.free_plan.title
16       </span>
17     </Radio>
18     <p
19       className="note markdown little-spacer-top"
20     >
21       billing.free_plan.description
22     </p>
23   </div>
24   <div
25     className="big-spacer-top"
26   >
27     <Radio
28       checked={false}
29       onCheck={[Function]}
30     >
31       <span>
32         billing.paid_plan.title
33       </span>
34     </Radio>
35     <p
36       className="note markdown little-spacer-top"
37     >
38       <FormattedMessage
39         defaultMessage="billing.paid_plan.description"
40         id="billing.paid_plan.description"
41         values={
42           Object {
43             "more": <React.Fragment>
44                
45               <Link
46                 onlyActiveOnIndex={false}
47                 style={Object {}}
48                 target="_blank"
49                 to="/documentation/sonarcloud-pricing/"
50               >
51                 learn_more
52               </Link>
53               <br />
54             </React.Fragment>,
55             "price": "10",
56           }
57         }
58       />
59     </p>
60   </div>
61 </div>
62 `;
63
64 exports[`should render and select 2`] = `
65 <div
66   aria-label="onboarding.create_organization.choose_plan"
67   className="huge-spacer-bottom"
68   role="radiogroup"
69 >
70   <div>
71     <Radio
72       checked={false}
73       onCheck={[Function]}
74     >
75       <span>
76         billing.free_plan.title
77       </span>
78     </Radio>
79     <p
80       className="note markdown little-spacer-top"
81     >
82       billing.free_plan.description
83     </p>
84   </div>
85   <div
86     className="big-spacer-top"
87   >
88     <Radio
89       checked={true}
90       onCheck={[Function]}
91     >
92       <span>
93         billing.paid_plan.title
94       </span>
95     </Radio>
96     <p
97       className="note markdown little-spacer-top"
98     >
99       <FormattedMessage
100         defaultMessage="billing.paid_plan.description"
101         id="billing.paid_plan.description"
102         values={
103           Object {
104             "more": <React.Fragment>
105                
106               <Link
107                 onlyActiveOnIndex={false}
108                 style={Object {}}
109                 target="_blank"
110                 to="/documentation/sonarcloud-pricing/"
111               >
112                 learn_more
113               </Link>
114               <br />
115             </React.Fragment>,
116             "price": "10",
117           }
118         }
119       />
120     </p>
121   </div>
122 </div>
123 `;