]> source.dussan.org Git - sonarqube.git/blob
2a50912a76b6902426dcf5cc00a6a762fd1ca7bb
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`SearchResultEntry should render 1`] = `
4 <Link
5   className="list-group-item active"
6   to="/documentation/foo/bar"
7 >
8   <SearchResultTitle
9     result={
10       Object {
11         "highlights": Object {},
12         "longestTerm": "",
13         "page": Object {
14           "content": "",
15           "navTitle": undefined,
16           "relativeName": "foo/bar",
17           "text": "Foobar is a universal variable understood to represent whatever is being discussed.",
18           "title": "Foobar",
19           "url": "/foo/bar",
20         },
21         "query": "",
22       }
23     }
24   />
25   <SearchResultText
26     result={
27       Object {
28         "highlights": Object {},
29         "longestTerm": "",
30         "page": Object {
31           "content": "",
32           "navTitle": undefined,
33           "relativeName": "foo/bar",
34           "text": "Foobar is a universal variable understood to represent whatever is being discussed.",
35           "title": "Foobar",
36           "url": "/foo/bar",
37         },
38         "query": "",
39       }
40     }
41   />
42 </Link>
43 `;
44
45 exports[`SearchResultText should correctly extract exact matches 1`] = `
46 <div
47   className="note"
48 >
49   <SearchResultTokens
50     tokens={
51       Array [
52         Object {
53           "marked": false,
54           "text": "Foobar is a universal ",
55         },
56         Object {
57           "marked": true,
58           "text": "variable understood",
59         },
60         Object {
61           "marked": false,
62           "text": " to represent whatever is being discussed.",
63         },
64       ]
65     }
66   />
67 </div>
68 `;
69
70 exports[`SearchResultText should render with highlights 1`] = `
71 <div
72   className="note"
73 >
74   <SearchResultTokens
75     tokens={
76       Array [
77         Object {
78           "marked": false,
79           "text": "Foobar is a ",
80         },
81         Object {
82           "marked": true,
83           "text": "universal",
84         },
85         Object {
86           "marked": false,
87           "text": " variable understood to represent whatever is being discussed.",
88         },
89       ]
90     }
91   />
92 </div>
93 `;
94
95 exports[`SearchResultText should render without highlights 1`] = `""`;
96
97 exports[`SearchResultTitle should render not without highlights 1`] = `
98 <h3
99   className="list-group-item-heading"
100   style={
101     Object {
102       "fontWeight": "normal",
103     }
104   }
105 >
106   Foobar
107 </h3>
108 `;
109
110 exports[`SearchResultTitle should render with highlights 1`] = `
111 <h3
112   className="list-group-item-heading"
113   style={
114     Object {
115       "fontWeight": "normal",
116     }
117   }
118 >
119   <SearchResultTokens
120     tokens={
121       Array [
122         Object {
123           "marked": true,
124           "text": "Foobar",
125         },
126       ]
127     }
128   />
129 </h3>
130 `;
131
132 exports[`SearchResultTokens should render 1`] = `
133 <Fragment>
134   Foobar is a 
135   <mark
136     key="1"
137   >
138     universal
139   </mark>
140    variable understood to represent whatever is being discussed.
141 </Fragment>
142 `;