Update all dependencies and lint fix

This commit is contained in:
typicode
2020-02-12 03:30:19 +01:00
parent fa9aa517f9
commit 7ce599c502
5 changed files with 3367 additions and 2640 deletions

View File

@ -11,7 +11,10 @@ describe('Server with custom foreign key', () => {
beforeEach(() => {
db = {}
db.posts = [{ id: 1, body: 'foo' }, { id: 2, body: 'bar' }]
db.posts = [
{ id: 1, body: 'foo' },
{ id: 2, body: 'bar' }
]
db.comments = [
{ id: 1, post_id: 1 },