Testing GridItem + AddFruit components

This commit is contained in:
2020-12-08 18:03:48 +01:00
parent 065ff6f3ff
commit b5ceae6c00
24 changed files with 844 additions and 380 deletions

View File

@@ -0,0 +1,18 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Test GridItem component. takes a snapshot of the component. 1`] = `
<article class="grid-item">
<!---->
<router-link-stub to="/fruit/3">
<div class="thumbnail"><img src="/image/path.jpg" alt="banana"></div>
<section>
<h3>
banana
<span class="tag" style="background-color: rgb(118, 62, 68);">Handcrafted</span>
</h3>
<hr>
<p class="price">$907</p>
</section>
</router-link-stub>
</article>
`;