]> source.dussan.org Git - sonarqube.git/blob
58db09fcecd1c24512cb3a995cac243707a363c3
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <SelectList
5   elements={
6     Array [
7       "test1",
8       "test2",
9       "test3",
10     ]
11   }
12   elementsTotalCount={55}
13   labelAll="quality_gates.projects.all"
14   labelSelected="quality_gates.projects.with"
15   labelUnselected="quality_gates.projects.without"
16   needToReload={false}
17   onSearch={[Function]}
18   onSelect={[Function]}
19   onUnselect={[Function]}
20   readOnly={true}
21   renderElement={[Function]}
22   selectedElements={
23     Array [
24       "test3",
25     ]
26   }
27   withPaging={true}
28 />
29 `;
30
31 exports[`should render correctly 2`] = `
32 <div
33   className="select-list-list-item"
34 >
35   <React.Fragment>
36     test1
37     <br />
38     <span
39       className="note"
40     >
41       test1
42     </span>
43   </React.Fragment>
44 </div>
45 `;
46
47 exports[`should render correctly 3`] = `
48 <div
49   className="select-list-list-item"
50 >
51   test_foo
52 </div>
53 `;