]> source.dussan.org Git - sonarqube.git/blob
c10485109351527a1954f4b66561051f5c918042
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: default 1`] = `
4 <SearchSelect
5   className="input-super-large"
6   components={
7     {
8       "Option": [Function],
9       "SingleValue": [Function],
10     }
11   }
12   defaultOptions={[]}
13   inputId="id"
14   isClearable={true}
15   loadOptions={[Function]}
16   noOptionsMessage={[Function]}
17   onChange={[MockFunction]}
18 />
19 `;
20
21 exports[`should render correctly: logged in & assignable issues 1`] = `
22 <SearchSelect
23   className="input-super-large"
24   components={
25     {
26       "Option": [Function],
27       "SingleValue": [Function],
28     }
29   }
30   defaultOptions={
31     [
32       {
33         "avatar": undefined,
34         "label": "Skywalker",
35         "value": "luke",
36       },
37     ]
38   }
39   inputId="id"
40   isClearable={true}
41   loadOptions={[Function]}
42   noOptionsMessage={[Function]}
43   onChange={[MockFunction]}
44 />
45 `;
46
47 exports[`should render correctly: logged in & no assignable issues 1`] = `
48 <SearchSelect
49   className="input-super-large"
50   components={
51     {
52       "Option": [Function],
53       "SingleValue": [Function],
54     }
55   }
56   defaultOptions={[]}
57   inputId="id"
58   isClearable={true}
59   loadOptions={[Function]}
60   noOptionsMessage={[Function]}
61   onChange={[MockFunction]}
62 />
63 `;
64
65 exports[`should render correctly: unassignable issues 1`] = `
66 <SearchSelect
67   className="input-super-large"
68   components={
69     {
70       "Option": [Function],
71       "SingleValue": [Function],
72     }
73   }
74   defaultOptions={
75     [
76       {
77         "label": "unassigned",
78         "value": "",
79       },
80     ]
81   }
82   inputId="id"
83   isClearable={true}
84   loadOptions={[Function]}
85   noOptionsMessage={[Function]}
86   onChange={[MockFunction]}
87 />
88 `;