Skip to content

Commit 51b77cd

Browse files
add snapshots back
1 parent 95404f7 commit 51b77cd

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Jest Snapshot v1, https://goo.gl/fbAQLP
2+
3+
exports[`fieldFunction function returned if no matching function exists appends an error block to a container 1`] = `
4+
<div>
5+
<div
6+
style="margin: 0.1em; padding: 0.5em; border: 0.05em solid gray; background-color: #fee; color:black;"
7+
>
8+
No handler for field &lt;http://example.com/#form&gt; of type http://example.com/#unknown-type
9+
</div>
10+
</div>
11+
`;
12+
13+
exports[`fieldFunction function returned if no matching function exists returns an error block 1`] = `
14+
<div
15+
style="margin: 0.1em; padding: 0.5em; border: 0.05em solid gray; background-color: #fee; color:black;"
16+
>
17+
No handler for field &lt;http://example.com/#form&gt; of type http://example.com/#unknown-type
18+
</div>
19+
`;
20+
21+
exports[`fieldFunction function returned if subject type undefined appends an error block to a container 1`] = `
22+
<div>
23+
<div
24+
style="margin: 0.1em; padding: 0.5em; border: 0.05em solid gray; background-color: #fee; color:black;"
25+
>
26+
No handler for field &lt;http://example.com/#doesnt-exist&gt; of type undefined
27+
</div>
28+
</div>
29+
`;
30+
31+
exports[`fieldFunction function returned if subject type undefined returns an error block 1`] = `
32+
<div
33+
style="margin: 0.1em; padding: 0.5em; border: 0.05em solid gray; background-color: #fee; color:black;"
34+
>
35+
No handler for field &lt;http://example.com/#doesnt-exist&gt; of type undefined
36+
</div>
37+
`;

0 commit comments

Comments
 (0)