]> source.dussan.org Git - sonarqube.git/blob
1e27f6b5fa941a4fcbb86431a924ff1b6c034bfa
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly 1`] = `
4 <div
5   className="settings-definition"
6   data-key="foo"
7 >
8   <div
9     className="settings-definition-left"
10   >
11     <h3
12       className="settings-definition-name"
13       title="Foo setting"
14     >
15       Foo setting
16     </h3>
17     <div
18       className="markdown small spacer-top"
19       dangerouslySetInnerHTML={
20         Object {
21           "__html": "When Foo then Bar",
22         }
23       }
24     />
25     <div
26       className="settings-definition-key note little-spacer-top"
27     >
28       settings.key_x.foo
29     </div>
30   </div>
31   <div
32     className="settings-definition-right"
33   >
34     <div
35       className="settings-definition-state"
36     />
37     <Input
38       hasValueChanged={false}
39       onCancel={[Function]}
40       onChange={[Function]}
41       onSave={[Function]}
42       setting={
43         Object {
44           "definition": Object {
45             "description": "When Foo then Bar",
46             "key": "foo",
47             "name": "Foo setting",
48             "options": Array [],
49             "type": "INTEGER",
50           },
51           "inherited": true,
52           "key": "foo",
53           "value": "42",
54         }
55       }
56       value="42"
57     />
58     <DefinitionActions
59       changedValue={null}
60       hasError={false}
61       hasValueChanged={false}
62       isDefault={true}
63       onCancel={[Function]}
64       onReset={[Function]}
65       onSave={[Function]}
66       setting={
67         Object {
68           "definition": Object {
69             "description": "When Foo then Bar",
70             "key": "foo",
71             "name": "Foo setting",
72             "options": Array [],
73             "type": "INTEGER",
74           },
75           "inherited": true,
76           "key": "foo",
77           "value": "42",
78         }
79       }
80     />
81   </div>
82 </div>
83 `;