]> source.dussan.org Git - sonarqube.git/blob
fb76d738b0564248028ce235db477410f79442e1
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: default 1`] = `
4 <Step
5   finished={true}
6   onOpen={[MockFunction]}
7   open={true}
8   renderForm={[Function]}
9   renderResult={[Function]}
10   stepTitle="onboarding.tutorial.with.jenkins.alm_selection.title"
11 />
12 `;
13
14 exports[`should render correctly: form, default 1`] = `
15 <div
16   className="boxed-group-inner"
17 >
18   <ButtonToggle
19     label="onboarding.tutorial.with.jenkins.alm_selection.title"
20     onCheck={[MockFunction]}
21     options={
22       [
23         {
24           "label": "alm.bitbucketcloud.long",
25           "value": "bitbucketcloud",
26         },
27         {
28           "label": "alm.bitbucket",
29           "value": "bitbucket",
30         },
31         {
32           "label": "alm.github",
33           "value": "github",
34         },
35         {
36           "label": "alm.gitlab",
37           "value": "gitlab",
38         },
39       ]
40     }
41   />
42 </div>
43 `;
44
45 exports[`should render correctly: form, with alm 1`] = `
46 <div
47   className="boxed-group-inner"
48 >
49   <ButtonToggle
50     label="onboarding.tutorial.with.jenkins.alm_selection.title"
51     onCheck={[MockFunction]}
52     options={
53       [
54         {
55           "label": "alm.bitbucketcloud.long",
56           "value": "bitbucketcloud",
57         },
58         {
59           "label": "alm.bitbucket",
60           "value": "bitbucket",
61         },
62         {
63           "label": "alm.github",
64           "value": "github",
65         },
66         {
67           "label": "alm.gitlab",
68           "value": "gitlab",
69         },
70       ]
71     }
72     value="azure"
73   />
74 </div>
75 `;
76
77 exports[`should render correctly: result, with alm 1`] = `
78 <div
79   className="boxed-group-actions display-flex-center"
80 >
81   <AlertSuccessIcon
82     className="spacer-right"
83   />
84   alm.bitbucketcloud.long
85 </div>
86 `;