]> source.dussan.org Git - sonarqube.git/blob
a0189b7cfd63fae835afbfbadcf63069bdfbab8a
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <Fragment>
5   <CreateProjectPageHeader
6     title="onboarding.create_project.setup_manually"
7   />
8   <div
9     className="create-project"
10   >
11     <div
12       className="flex-1 huge-spacer-right"
13     >
14       <form
15         className="manual-project-create"
16         onSubmit={[Function]}
17       >
18         <withRouter(OrganizationInput)
19           onChange={[Function]}
20           organization=""
21           organizations={
22             Array [
23               Object {
24                 "key": "foo",
25                 "name": "Foo",
26               },
27               Object {
28                 "key": "bar",
29                 "name": "Bar",
30                 "subscription": "PAID",
31               },
32             ]
33           }
34         />
35         <ValidationInput
36           className="form-field"
37           description="onboarding.create_project.project_key.description"
38           help="onboarding.create_project.project_key.help"
39           id="project-key"
40           isInvalid={false}
41           isValid={false}
42           label="onboarding.create_project.project_key"
43           required={true}
44         >
45           <input
46             autoFocus={true}
47             className="input-super-large"
48             id="project-key"
49             maxLength={400}
50             minLength={1}
51             onChange={[Function]}
52             type="text"
53             value=""
54           />
55         </ValidationInput>
56         <ValidationInput
57           className="form-field"
58           description="onboarding.create_project.display_name.description"
59           help="onboarding.create_project.display_name.help"
60           id="project-name"
61           isInvalid={false}
62           isValid={false}
63           label="onboarding.create_project.display_name"
64           required={true}
65         >
66           <input
67             className="input-super-large"
68             id="project-name"
69             maxLength={255}
70             minLength={1}
71             onChange={[Function]}
72             type="text"
73             value=""
74           />
75         </ValidationInput>
76         <SubmitButton
77           disabled={true}
78         >
79           set_up
80         </SubmitButton>
81         <DeferredSpinner
82           className="spacer-left"
83           loading={false}
84           timeout={100}
85         />
86       </form>
87     </div>
88   </div>
89 </Fragment>
90 `;