Skip to content

Commit 7ce599c

Browse files
committed
Update all dependencies and lint fix
1 parent fa9aa51 commit 7ce599c

File tree

5 files changed

+3444
-2717
lines changed

5 files changed

+3444
-2717
lines changed

__tests__/server/plural-fake.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ describe('Fake server', () => {
1010
beforeEach(() => {
1111
db = {}
1212

13-
db.posts = [{ id: 1, body: 'foo' }, { id: 2, body: 'bar' }]
13+
db.posts = [
14+
{ id: 1, body: 'foo' },
15+
{ id: 2, body: 'bar' }
16+
]
1417

1518
db.comments = [
1619
{ id: 1, body: 'foo', published: true, postId: 1, userId: 1 },

__tests__/server/plural-with-custom-foreign-key.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ describe('Server with custom foreign key', () => {
1111
beforeEach(() => {
1212
db = {}
1313

14-
db.posts = [{ id: 1, body: 'foo' }, { id: 2, body: 'bar' }]
14+
db.posts = [
15+
{ id: 1, body: 'foo' },
16+
{ id: 2, body: 'bar' }
17+
]
1518

1619
db.comments = [
1720
{ id: 1, post_id: 1 },

__tests__/server/plural.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ describe('Server', () => {
1818
beforeEach(() => {
1919
db = {}
2020

21-
db.posts = [{ id: 1, body: 'foo' }, { id: 2, body: 'bar' }]
21+
db.posts = [
22+
{ id: 1, body: 'foo' },
23+
{ id: 2, body: 'bar' }
24+
]
2225

2326
db.tags = [
2427
{ id: 1, body: 'Technology' },

0 commit comments

Comments
 (0)