]> source.dussan.org Git - sonarqube.git/blob
e66235b6d614f66a53f8909038d196d75e37e0ee
[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     {
9       "name": "",
10       "secret": "",
11       "url": "",
12     }
13   }
14   onClose={[MockFunction]}
15   onSubmit={[MockFunction]}
16   size="small"
17   validate={[Function]}
18 >
19   <Component />
20 </ValidationModal>
21 `;
22
23 exports[`should render correctly when updating a webhook with a secret 1`] = `
24 <ValidationModal
25   confirmButtonText="update_verb"
26   header="webhooks.update"
27   initialValues={
28     {
29       "name": "bar",
30       "secret": "sonar",
31       "url": "http://foo.bar",
32     }
33   }
34   onClose={[MockFunction]}
35   onSubmit={[MockFunction]}
36   size="small"
37   validate={[Function]}
38 >
39   <Component />
40 </ValidationModal>
41 `;
42
43 exports[`should render correctly when updating a webhook without secret 1`] = `
44 <ValidationModal
45   confirmButtonText="update_verb"
46   header="webhooks.update"
47   initialValues={
48     {
49       "name": "foo",
50       "secret": "",
51       "url": "http://foo.bar",
52     }
53   }
54   onClose={[MockFunction]}
55   onSubmit={[MockFunction]}
56   size="small"
57   validate={[Function]}
58 >
59   <Component />
60 </ValidationModal>
61 `;