Register.spec.js.snap 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`Register.vue renders correctly 1`] = `
  3. <div
  4. class="d-flex align-items-center min-vh-100"
  5. >
  6. <ccontainer-stub
  7. fluid="true"
  8. tag="div"
  9. >
  10. <crow-stub
  11. class="justify-content-center"
  12. gutters="true"
  13. tag="div"
  14. >
  15. <ccol-stub
  16. md="6"
  17. tag="div"
  18. >
  19. <ccard-stub
  20. class="mx-4 mb-0"
  21. >
  22. <ccardbody-stub
  23. class="p-4"
  24. >
  25. <cform-stub>
  26. <h1>
  27. Register
  28. </h1>
  29. <p
  30. class="text-muted"
  31. >
  32. Create your account
  33. </p>
  34. <cinput-stub
  35. autocomplete="username"
  36. lazy="400"
  37. placeholder="Username"
  38. type="text"
  39. />
  40. <cinput-stub
  41. autocomplete="email"
  42. lazy="400"
  43. placeholder="Email"
  44. prepend="@"
  45. type="text"
  46. />
  47. <cinput-stub
  48. autocomplete="new-password"
  49. lazy="400"
  50. placeholder="Password"
  51. type="password"
  52. />
  53. <cinput-stub
  54. autocomplete="new-password"
  55. class="mb-4"
  56. lazy="400"
  57. placeholder="Repeat password"
  58. type="password"
  59. />
  60. <cbutton-stub
  61. activeclass="router-link-active"
  62. block="true"
  63. color="success"
  64. event="click"
  65. exactactiveclass="router-link-exact-active"
  66. routertag="a"
  67. target="_self"
  68. type="button"
  69. >
  70. Create Account
  71. </cbutton-stub>
  72. </cform-stub>
  73. </ccardbody-stub>
  74. <ccardfooter-stub
  75. class="p-4"
  76. >
  77. <crow-stub
  78. gutters="true"
  79. tag="div"
  80. >
  81. <ccol-stub
  82. col="6"
  83. tag="div"
  84. >
  85. <cbutton-stub
  86. activeclass="router-link-active"
  87. block="true"
  88. color="facebook"
  89. event="click"
  90. exactactiveclass="router-link-exact-active"
  91. routertag="a"
  92. target="_self"
  93. type="button"
  94. >
  95. Facebook
  96. </cbutton-stub>
  97. </ccol-stub>
  98. <ccol-stub
  99. col="6"
  100. tag="div"
  101. >
  102. <cbutton-stub
  103. activeclass="router-link-active"
  104. block="true"
  105. color="twitter"
  106. event="click"
  107. exactactiveclass="router-link-exact-active"
  108. routertag="a"
  109. target="_self"
  110. type="button"
  111. >
  112. Twitter
  113. </cbutton-stub>
  114. </ccol-stub>
  115. </crow-stub>
  116. </ccardfooter-stub>
  117. </ccard-stub>
  118. </ccol-stub>
  119. </crow-stub>
  120. </ccontainer-stub>
  121. </div>
  122. `;