]> source.dussan.org Git - sonarqube.git/blob
57b9a0152f6e9cf633b696dff08af41a2afadf51
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`permissions shows the apply permission template modal 1`] = `
4 <ApplyTemplate
5   onClose={[Function]}
6   project={
7     Object {
8       "id": "foo",
9       "key": "foo",
10       "name": "Foo",
11       "qualifier": "TRK",
12       "visibility": "private",
13     }
14   }
15 />
16 `;
17
18 exports[`renders correctly 1`] = `
19 <Fragment>
20   <ActionsDropdown
21     onOpen={[Function]}
22   >
23     <ActionsDropdownItem
24       className="js-apply-template"
25       onClick={[Function]}
26     >
27       projects_role.apply_template
28     </ActionsDropdownItem>
29   </ActionsDropdown>
30 </Fragment>
31 `;
32
33 exports[`restore access shows the restore access modal 1`] = `
34 <RestoreAccessModal
35   currentUser={
36     Object {
37       "groups": Array [],
38       "isLoggedIn": true,
39       "login": "luke",
40       "name": "Skywalker",
41       "scmAccounts": Array [],
42     }
43   }
44   onClose={[Function]}
45   onRestoreAccess={[Function]}
46   project={
47     Object {
48       "id": "foo",
49       "key": "foo",
50       "name": "Foo",
51       "qualifier": "TRK",
52       "visibility": "private",
53     }
54   }
55 />
56 `;