]> source.dussan.org Git - sonarqube.git/blob
49fe6648294409982fb0fd9892021f33794ca223
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <Select
5   className="Select-big"
6   clearable={false}
7   isLoading={false}
8   labelKey="name"
9   noResultsText="no_results"
10   onChange={[Function]}
11   onInputChange={[Function]}
12   optionComponent={[Function]}
13   options={Array []}
14   placeholder=""
15   searchable={true}
16   value={
17     Object {
18       "avatar": "7daf6c79d4802916d83f6266e24850af",
19       "login": "admin",
20       "name": "Administrator",
21     }
22   }
23   valueComponent={[Function]}
24   valueKey="login"
25 />
26 `;
27
28 exports[`should render correctly 2`] = `
29 Array [
30   Object {
31     "email": "tester@testing.ch",
32     "login": "test",
33     "name": "Tester",
34   },
35   Object {
36     "email": "foo@bar.ch",
37     "login": "foo",
38     "name": "Foo Bar",
39   },
40 ]
41 `;
42
43 exports[`should render correctly 3`] = `
44 <Select
45   className="Select-big"
46   clearable={false}
47   isLoading={false}
48   labelKey="name"
49   noResultsText="no_results"
50   onChange={[Function]}
51   onInputChange={[Function]}
52   optionComponent={[Function]}
53   options={
54     Array [
55       Object {
56         "email": "tester@testing.ch",
57         "login": "test",
58         "name": "Tester",
59       },
60       Object {
61         "email": "foo@bar.ch",
62         "login": "foo",
63         "name": "Foo Bar",
64       },
65     ]
66   }
67   placeholder=""
68   searchable={true}
69   value={
70     Object {
71       "avatar": "7daf6c79d4802916d83f6266e24850af",
72       "login": "admin",
73       "name": "Administrator",
74     }
75   }
76   valueComponent={[Function]}
77   valueKey="login"
78 />
79 `;