Parent.spec.js.snap 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`Parent.vue mount snapshot 1`] = `
  3. <div>
  4. <h1>parent</h1>
  5. <main>
  6. <p>this is a child component</p>
  7. <p>this is a child component</p>
  8. <p>this is a child component</p>
  9. </main>
  10. </div>
  11. `;
  12. exports[`Parent.vue mount snapshot 2`] = `
  13. <div>
  14. <h1>
  15. parent
  16. </h1>
  17. <main>
  18. <p>
  19. this is a child component
  20. </p>
  21. <p>
  22. this is a child component
  23. </p>
  24. <p>
  25. this is a child component
  26. </p>
  27. </main>
  28. </div>
  29. `;
  30. exports[`Parent.vue properly serializes a fully-mounted wrapper 1`] = `
  31. <div>
  32. <h1>parent</h1>
  33. <main>
  34. <p>this is a child component</p>
  35. <p>this is a child component</p>
  36. <p>this is a child component</p>
  37. </main>
  38. </div>
  39. `;
  40. exports[`Parent.vue properly serializes a shallowly-rendered wrapper 1`] = `
  41. <div>
  42. <h1>parent</h1>
  43. <main>
  44. <!---->
  45. <!---->
  46. <!---->
  47. </main>
  48. </div>
  49. `;
  50. exports[`Parent.vue shallow snapshot 1`] = `
  51. <div>
  52. <h1>parent</h1>
  53. <main>
  54. <!---->
  55. <!---->
  56. <!---->
  57. </main>
  58. </div>
  59. `;