This commit is contained in:
mattwr18 2019-09-04 18:45:52 +02:00
parent e5198babf0
commit c2c165c362
2 changed files with 4 additions and 2 deletions

View File

@ -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',
}
})

View File

@ -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({