Add prettier

This commit is contained in:
typicode
2017-07-02 15:09:32 +02:00
parent 9fd9c3134a
commit 13a231d794
31 changed files with 1041 additions and 1206 deletions

View File

@ -13,19 +13,14 @@ describe('mixins', () => {
beforeEach(() => {
db = {
posts: [
{ id: 1, comment: 1 }
],
posts: [{ id: 1, comment: 1 }],
comments: [
{ id: 1, postId: 1 },
// Comments below references a post that doesn't exist
{ id: 2, postId: 2 },
{ id: 3, postId: 2 }
],
photos: [
{ id: '1' },
{ id: '2' }
]
photos: [{ id: '1' }, { id: '2' }]
}
})