Skip to content

Commit 6035d74

Browse files
author
Maciej Lewinski
committed
updated snapshot file
1 parent 7b38a1f commit 6035d74

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

src/__tests__/__snapshots__/Store.js.snap

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3+
exports[`Save save all with existing model 1`] = `
4+
Object {
5+
"data": Array [
6+
Object {
7+
"id": 10,
8+
"kind": -238,
9+
"name": "Doggo",
10+
},
11+
],
12+
"with": Object {
13+
"kind": Array [
14+
Object {
15+
"id": -238,
16+
"name": "Dog",
17+
},
18+
],
19+
},
20+
}
21+
`;
22+
23+
exports[`Save save all with not defined relation error 1`] = `
24+
Object {
25+
"data": Array [
26+
Object {
27+
"id": 10,
28+
"kind": -241,
29+
"name": "Doggo",
30+
},
31+
],
32+
"with": Object {
33+
"kind": Array [
34+
Object {
35+
"id": -241,
36+
"name": "",
37+
},
38+
],
39+
},
40+
}
41+
`;
42+
343
exports[`requests fetch with complex nested relations 1`] = `
444
Array [
545
Object {

0 commit comments

Comments
 (0)