]> source.dussan.org Git - sonarqube.git/blob
0dbf8413a9c78b189481d949c2d28ac70e8c6cb3
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: additional content 1`] = `
4 <header
5   className="huge-spacer-bottom bordered-bottom overflow-hidden"
6 >
7   <h1
8     className="pull-left huge big-spacer-bottom"
9   >
10     Foo
11   </h1>
12   Bar
13 </header>
14 `;
15
16 exports[`should render correctly: default 1`] = `
17 <header
18   className="huge-spacer-bottom bordered-bottom overflow-hidden"
19 >
20   <h1
21     className="pull-left huge big-spacer-bottom"
22   >
23     Foo
24   </h1>
25 </header>
26 `;
27
28 exports[`should render correctly: with breadcrumb 1`] = `
29 <header
30   className="huge-spacer-bottom bordered-bottom overflow-hidden"
31 >
32   <h1
33     className="pull-left huge big-spacer-bottom"
34   >
35     <Link
36       onlyActiveOnIndex={false}
37       style={Object {}}
38       to="/projects/create"
39     >
40       my_account.create_new.TRK
41     </Link>
42     <span
43       className="big-spacer-left big-spacer-right slash-separator"
44     />
45     Foo
46   </h1>
47 </header>
48 `;