]> source.dussan.org Git - sonarqube.git/blob
56d829bf6828f4275d9aa456046ebf9823046430
[sonarqube.git] /
1 // Jest Snapshot v1, https://goo.gl/fbAQLP
2
3 exports[`should render correctly: default 1`] = `
4 <ForwardRef(Link)
5   className="navbar-brand"
6   to="/"
7 >
8   <img
9     alt="layout.sonar.slogan"
10     height={30}
11     src="/images/logo.svg?v=6.6"
12     title="layout.sonar.slogan"
13     width={83}
14   />
15 </ForwardRef(Link)>
16 `;
17
18 exports[`should render correctly: with logo 1`] = `
19 <ForwardRef(Link)
20   className="navbar-brand"
21   to="/"
22 >
23   <img
24     alt="layout.sonar.slogan"
25     height={30}
26     src="http://sonarsource.com/custom-logo.svg"
27     title="layout.sonar.slogan"
28     width={100}
29   />
30 </ForwardRef(Link)>
31 `;
32
33 exports[`should render correctly: with logo and width 1`] = `
34 <ForwardRef(Link)
35   className="navbar-brand"
36   to="/"
37 >
38   <img
39     alt="layout.sonar.slogan"
40     height={30}
41     src="http://sonarsource.com/custom-logo.svg"
42     title="layout.sonar.slogan"
43     width="200"
44   />
45 </ForwardRef(Link)>
46 `;