-
-
Notifications
You must be signed in to change notification settings - Fork 868
Expand file tree
/
Copy pathmanual.js.snap
More file actions
51 lines (44 loc) · 1.24 KB
/
manual.js.snap
File metadata and controls
51 lines (44 loc) · 1.24 KB
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
48
49
50
51
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`manual - proxy cannot finishDraft twice 1`] = `"Cannot perform 'get' on a proxy that has been revoked"`;
exports[`manual - proxy cannot modify after finish 1`] = `"Cannot perform 'set' on a proxy that has been revoked"`;
exports[`manual - proxy should check arguments 1`] = `"[Immer] minified error nr: 8. Full error at: https://bit.ly/3cXEKWf"`;
exports[`manual - proxy should check arguments 2`] = `"[Immer] minified error nr: 8. Full error at: https://bit.ly/3cXEKWf"`;
exports[`manual - proxy should check arguments 3`] = `"[Immer] minified error nr: 9. Full error at: https://bit.ly/3cXEKWf"`;
exports[`manual - proxy should not finish twice 1`] = `"Cannot perform 'get' on a proxy that has been revoked"`;
exports[`manual - proxy should support patches drafts 1`] = `
[
[
[
{
"op": "replace",
"path": [
"a",
],
"value": 2,
},
{
"op": "add",
"path": [
"b",
],
"value": 3,
},
],
[
{
"op": "replace",
"path": [
"a",
],
"value": 1,
},
{
"op": "remove",
"path": [
"b",
],
},
],
],
]
`;