blob: 28e917417051c3ed3719ef330b0703de2a65ce63 (
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
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`<SingleItem/> Errors with a not found Item 1`] = `
<p
data-test="graphql-error"
>
<strong>
Shoot!
</strong>
Item not found!
</p>
`;
exports[`<SingleItem/> Renders with Proper Data 1`] = `
<h2>
Viewing
dogs are best
</h2>
`;
exports[`<SingleItem/> Renders with Proper Data 2`] = `
<img
alt="dogs are best"
src="dog.jpg"
/>
`;
exports[`<SingleItem/> Renders with Proper Data 3`] = `
<p>
dogs
</p>
`;
|