summaryrefslogtreecommitdiffstats
path: root/frontend/__tests__/__snapshots__/EditUser.test.js.snap
blob: bbb672d290a4f50aca4d3102fd37fb64ca5ff9bf (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
45
46
47
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`<EditUser/> renders 1`] = `
<form
  className="sc-bdVaJa LHejR"
  onSubmit={[Function]}
>
  <DisplayError
    error={Object {}}
  />
  <fieldset
    aria-busy={false}
    disabled={false}
  >
    <label
      htmlFor="name"
    >
      Name:
      <input
        defaultValue="Miss Coleman Berge"
        name="name"
        onChange={[Function]}
        type="text"
      />
    </label>
    <button
      type="submit"
    >
      Update
    </button>
    <strong>
      me:
    </strong>
    <pre>
      "Miss Coleman Berge"
    </pre>
    <strong>
      Change:
    </strong>
    <pre
      data-test="change"
    >
      {}
    </pre>
  </fieldset>
</form>
`;