]> source.dussan.org Git - sonarqube.git/blob
35cc168d15eb728bbcf0bf81febbf88187dc2100
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render modal properly 1`] = `
4 <Modal
5   className="group-menbers-modal"
6   contentLabel="users.update"
7   onRequestClose={[MockFunction]}
8 >
9   <header
10     className="modal-head"
11   >
12     <h2>
13       users.update
14     </h2>
15   </header>
16   <div
17     className="modal-body modal-container"
18   >
19     <SelectList
20       elements={
21         [
22           "foo",
23         ]
24       }
25       needToReload={false}
26       onSearch={[Function]}
27       onSelect={[Function]}
28       onUnselect={[Function]}
29       renderElement={[Function]}
30       selectedElements={
31         [
32           "foo",
33         ]
34       }
35       withPaging={true}
36     />
37   </div>
38   <footer
39     className="modal-foot"
40   >
41     <ResetButtonLink
42       onClick={[MockFunction]}
43     >
44       done
45     </ResetButtonLink>
46   </footer>
47 </Modal>
48 `;
49
50 exports[`should render modal properly 2`] = `
51 <div
52   className="select-list-list-item"
53 >
54   test1
55 </div>
56 `;
57
58 exports[`should render modal properly 3`] = `
59 <div
60   className="select-list-list-item"
61 >
62   test_foo
63 </div>
64 `;