]> source.dussan.org Git - sonarqube.git/blob
a64ebb3f1059dd10be7e248b1874e46fa42cf214
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`renders 1`] = `
4 <div
5   className="boxed-group boxed-group-inner"
6 >
7   <table
8     className="data zebra"
9   >
10     <thead>
11       <tr>
12         <th
13           className="thin nowrap"
14         >
15           language
16         </th>
17         <th
18           className="thin nowrap"
19         >
20           quality_profile
21         </th>
22         <th>
23            
24         </th>
25       </tr>
26     </thead>
27     <tbody>
28       <ProfileRow
29         key="java"
30         onChangeProfile={[MockFunction]}
31         possibleProfiles={
32           Array [
33             Object {
34               "activeDeprecatedRuleCount": 0,
35               "activeRuleCount": 17,
36               "key": "foo-java",
37               "language": "java",
38               "languageName": "java",
39               "name": "foo-java",
40               "organization": "org",
41             },
42             Object {
43               "activeDeprecatedRuleCount": 0,
44               "activeRuleCount": 17,
45               "key": "bar-java",
46               "language": "java",
47               "languageName": "java",
48               "name": "bar-java",
49               "organization": "org",
50             },
51             Object {
52               "activeDeprecatedRuleCount": 0,
53               "activeRuleCount": 17,
54               "key": "baz-java",
55               "language": "java",
56               "languageName": "java",
57               "name": "baz-java",
58               "organization": "org",
59             },
60           ]
61         }
62         profile={
63           Object {
64             "activeDeprecatedRuleCount": 0,
65             "activeRuleCount": 17,
66             "key": "foo-java",
67             "language": "java",
68             "languageName": "java",
69             "name": "foo-java",
70             "organization": "org",
71           }
72         }
73       />
74       <ProfileRow
75         key="js"
76         onChangeProfile={[MockFunction]}
77         possibleProfiles={
78           Array [
79             Object {
80               "activeDeprecatedRuleCount": 0,
81               "activeRuleCount": 17,
82               "key": "foo-js",
83               "language": "js",
84               "languageName": "js",
85               "name": "foo-js",
86               "organization": "org",
87             },
88           ]
89         }
90         profile={
91           Object {
92             "activeDeprecatedRuleCount": 0,
93             "activeRuleCount": 17,
94             "key": "foo-js",
95             "language": "js",
96             "languageName": "js",
97             "name": "foo-js",
98             "organization": "org",
99           }
100         }
101       />
102     </tbody>
103   </table>
104 </div>
105 `;