]> source.dussan.org Git - sonarqube.git/blob
457c4cad762aa6f4bd884b91b13a7a6d310bbafe
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`render issues list 1`] = `
4 <div
5   className="issue-list"
6 >
7   <Issue
8     issue={
9       Object {
10         "actions": Array [],
11         "component": "",
12         "componentLongName": "",
13         "componentQualifier": "",
14         "componentUuid": "",
15         "creationDate": "",
16         "flows": Array [],
17         "fromHotspot": false,
18         "key": "foo",
19         "message": "",
20         "organization": "",
21         "project": "",
22         "projectKey": "",
23         "projectName": "",
24         "projectOrganization": "",
25         "rule": "",
26         "ruleName": "",
27         "secondaryLocations": Array [],
28         "severity": "",
29         "status": "",
30         "transitions": Array [],
31         "type": "BUG",
32       }
33     }
34     key="foo"
35     onChange={[MockFunction]}
36     onClick={[MockFunction]}
37     onPopupToggle={[MockFunction]}
38     selected={true}
39   />
40   <Issue
41     issue={
42       Object {
43         "actions": Array [],
44         "component": "",
45         "componentLongName": "",
46         "componentQualifier": "",
47         "componentUuid": "",
48         "creationDate": "",
49         "flows": Array [],
50         "fromHotspot": false,
51         "key": "bar",
52         "message": "",
53         "organization": "",
54         "project": "",
55         "projectKey": "",
56         "projectName": "",
57         "projectOrganization": "",
58         "rule": "",
59         "ruleName": "",
60         "secondaryLocations": Array [],
61         "severity": "",
62         "status": "",
63         "transitions": Array [],
64         "type": "BUG",
65       }
66     }
67     key="bar"
68     onChange={[MockFunction]}
69     onClick={[MockFunction]}
70     onPopupToggle={[MockFunction]}
71     selected={false}
72   />
73 </div>
74 `;