You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GlobalNavBranding-test.tsx.snap 967B

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