]> source.dussan.org Git - sonarqube.git/blob
9da8819486cef0626628e4d0cdcdfa5f949f61d9
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly when creating a new webhook 1`] = `
4 <ValidationModal
5   confirmButtonText="create"
6   header="webhooks.create"
7   initialValues={
8     Object {
9       "name": "",
10       "secret": "",
11       "url": "",
12     }
13   }
14   isInitialValid={false}
15   onClose={[MockFunction]}
16   onSubmit={[MockFunction]}
17   size="small"
18   validate={[Function]}
19 >
20   <Component />
21 </ValidationModal>
22 `;
23
24 exports[`should render correctly when updating a webhook with a secret 1`] = `
25 <ValidationModal
26   confirmButtonText="update_verb"
27   header="webhooks.update"
28   initialValues={
29     Object {
30       "name": "bar",
31       "secret": "sonar",
32       "url": "http://foo.bar",
33     }
34   }
35   isInitialValid={true}
36   onClose={[MockFunction]}
37   onSubmit={[MockFunction]}
38   size="small"
39   validate={[Function]}
40 >
41   <Component />
42 </ValidationModal>
43 `;
44
45 exports[`should render correctly when updating a webhook without secret 1`] = `
46 <ValidationModal
47   confirmButtonText="update_verb"
48   header="webhooks.update"
49   initialValues={
50     Object {
51       "name": "foo",
52       "secret": "",
53       "url": "http://foo.bar",
54     }
55   }
56   isInitialValid={true}
57   onClose={[MockFunction]}
58   onSubmit={[MockFunction]}
59   size="small"
60   validate={[Function]}
61 >
62   <Component />
63 </ValidationModal>
64 `;