File tree Expand file tree Collapse file tree
test/unit/widgets/forms/__snapshots__ Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 < http://example.com/#form> 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 < http://example.com/#form> 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 < http://example.com/#doesnt-exist> 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 < http://example.com/#doesnt-exist> of type undefined
36+ </div >
37+ ` ;
You can’t perform that action at this time.
0 commit comments