Skip to content

Commit 711213a

Browse files
author
Philipp Alferov
committed
Add missing property to expected fixture
1 parent 9e708c5 commit 711213a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/fixtures/expected.fixture.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
module.exports = [{
22
id: 1,
3+
parent_id: null,
34
children: [{
45
id: 2,
6+
parent_id: 1,
57
children: [{
6-
id: 3
8+
id: 3,
9+
parent_id: 2
710
}]
811
}]
912
}, {
10-
id: 4
13+
id: 4,
14+
parent_id: null
1115
}];

0 commit comments

Comments
 (0)