runtime.client.spec.tsx.snap 768 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
  2. exports[`single-slot mounting (declare + renderSlot) > folds class hashes and collapses svg internals in snapshots, leaving the live DOM alone 1`] = `
  3. <div
  4. data-slot="trt.panel"
  5. style="display: contents;"
  6. >
  7. <div
  8. class="frame plain"
  9. >
  10. <span
  11. class="label"
  12. >
  13. styled
  14. </span>
  15. <svg
  16. aria-hidden="true"
  17. data-content="2bfa09dc"
  18. viewBox="0 0 16 16"
  19. />
  20. </div>
  21. </div>
  22. `;
  23. exports[`single-slot mounting edge arms > serializes childless svg untouched next to scoped classes 1`] = `
  24. <div
  25. data-slot="trt.panel"
  26. style="display: contents;"
  27. >
  28. <div
  29. class="frame"
  30. >
  31. <svg
  32. aria-hidden="true"
  33. viewBox="0 0 1 1"
  34. />
  35. </div>
  36. </div>
  37. `;