summaryrefslogtreecommitdiffstats
path: root/frontend/__tests__/__snapshots__/CartItem.test.js.snap
blob: b8f5ad388da3614e972181c78f45b188e9700fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`<CartItem> renders and matches snapshot 1`] = `
<styled.li
  key="abc123"
>
  <img
    alt="Fake Item"
    src="dog.jpg"
    width="100"
  />
  <div
    className="cart-item-details"
  >
    <h3>
      Fake Item
    </h3>
    <p>
      $1,000
       — 
      <em>
        20
         × 
        $50
         each
      </em>
    </p>
  </div>
  <RemoveFromCart
    id="abc123"
  />
</styled.li>
`;