]> source.dussan.org Git - sonarqube.git/blob
c06e0b818bf822ac03f97c8cf3db4ab32dd8b616
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <BitbucketProjectCreateRenderer
5   bitbucketSetting={
6     Object {
7       "alm": "bitbucket",
8       "key": "foo",
9     }
10   }
11   canAdmin={false}
12   importing={false}
13   loading={false}
14   onImportRepository={[Function]}
15   onPersonalAccessTokenCreated={[Function]}
16   onSearch={[Function]}
17   onSelectRepository={[Function]}
18   resetPat={false}
19   searching={false}
20   showPersonalAccessTokenForm={true}
21 />
22 `;
23
24 exports[`should render correctly: No repository 1`] = `
25 <BitbucketProjectCreateRenderer
26   bitbucketSetting={
27     Object {
28       "alm": "bitbucket",
29       "key": "foo",
30     }
31   }
32   canAdmin={false}
33   importing={false}
34   loading={false}
35   onImportRepository={[Function]}
36   onPersonalAccessTokenCreated={[Function]}
37   onSearch={[Function]}
38   onSelectRepository={[Function]}
39   projects={
40     Array [
41       Object {
42         "id": 1,
43         "key": "project1",
44         "name": "Project 1",
45       },
46       Object {
47         "id": 2,
48         "key": "project2",
49         "name": "Project",
50       },
51     ]
52   }
53   resetPat={false}
54   searching={false}
55   showPersonalAccessTokenForm={false}
56 />
57 `;
58
59 exports[`should render correctly: No setting 1`] = `
60 <BitbucketProjectCreateRenderer
61   canAdmin={false}
62   importing={false}
63   loading={false}
64   onImportRepository={[Function]}
65   onPersonalAccessTokenCreated={[Function]}
66   onSearch={[Function]}
67   onSelectRepository={[Function]}
68   resetPat={false}
69   searching={false}
70   showPersonalAccessTokenForm={true}
71 />
72 `;