diff --git a/webapp/components/Comment.spec.js b/webapp/components/Comment.spec.js index 6303989f3..375280cea 100644 --- a/webapp/components/Comment.spec.js +++ b/webapp/components/Comment.spec.js @@ -63,7 +63,7 @@ describe('Comment.vue', () => { propsData.comment = { id: '2', contentExcerpt: 'Hello I am a comment content', - content: 'Hello I am comment content' + content: 'Hello I am comment content', } }) diff --git a/webapp/components/CommentList/CommentList.spec.js b/webapp/components/CommentList/CommentList.spec.js index 902770e53..0fa1e8b81 100644 --- a/webapp/components/CommentList/CommentList.spec.js +++ b/webapp/components/CommentList/CommentList.spec.js @@ -27,7 +27,9 @@ describe('CommentList.vue', () => { propsData = { post: { id: 1, - comments: [{ id: 'comment134', contentExcerpt: 'this is a comment', content: 'this is a comment' }], + comments: [ + { id: 'comment134', contentExcerpt: 'this is a comment', content: 'this is a comment' }, + ], }, } store = new Vuex.Store({