blob: de5df252311db1136affb8e3dab633d60fa02945 (
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
34
35
36
37
38
39
40
41
42
43
44
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`<EditUser/> asks you to log in when you arent logged in 1`] = `
<p>
You must be logged in
</p>
`;
exports[`<EditUser/> renders 1`] = `
<Form
onSubmit={[Function]}
>
<label
htmlFor="name"
>
Name:
<input
defaultValue="Wes Bos"
name="name"
onChange={[Function]}
type="text"
/>
</label>
<button
type="submit"
>
Update
</button>
<strong>
me:
</strong>
<pre>
"Wes Bos"
</pre>
<strong>
Change:
</strong>
<pre
data-test="change"
>
{}
</pre>
</Form>
`;
|