]> source.dussan.org Git - sonarqube.git/blob
40c7c51d3b37c5732454c315c921a749279f383d
[sonarqube.git] /
1 exports[`test should not render breadcrumbs with one element 1`] = `
2 <h2
3   className="navbar-context-title">
4   <span>
5     <Link
6       className="link-base-color"
7       onlyActiveOnIndex={false}
8       style={Object {}}
9       to={
10         Object {
11           "pathname": "/dashboard",
12           "query": Object {
13             "id": "my-project",
14           },
15         }
16       }>
17       <strong>
18         My Project
19       </strong>
20     </Link>
21   </span>
22 </h2>
23 `;
24
25 exports[`test should render organization 1`] = `
26 <h2
27   className="navbar-context-title">
28   <span>
29     <span
30       className="navbar-context-title-qualifier little-spacer-right">
31       <qualifier-icon
32         qualifier="TRK" />
33     </span>
34     <OrganizationLink
35       className="link-base-color"
36       organization={
37         Object {
38           "key": "foo",
39           "name": "The Foo Organization",
40         }
41       }>
42       The Foo Organization
43     </OrganizationLink>
44     <span
45       className="slash-separator" />
46   </span>
47   <span>
48     <Link
49       className="link-base-color"
50       onlyActiveOnIndex={false}
51       style={Object {}}
52       to={
53         Object {
54           "pathname": "/dashboard",
55           "query": Object {
56             "id": "my-project",
57           },
58         }
59       }>
60       <strong>
61         My Project
62       </strong>
63     </Link>
64   </span>
65 </h2>
66 `;