mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
84 lines
1.9 KiB
JavaScript
84 lines
1.9 KiB
JavaScript
import { config, mount, createLocalVue } from '@vue/test-utils'
|
|
import CommentList from './CommentList'
|
|
import Empty from '~/components/Empty'
|
|
import Vuex from 'vuex'
|
|
import Styleguide from '@human-connection/styleguide'
|
|
import Filters from '~/plugins/vue-filters'
|
|
|
|
const localVue = createLocalVue()
|
|
|
|
localVue.use(Styleguide)
|
|
localVue.use(Vuex)
|
|
localVue.use(Filters)
|
|
localVue.filter('truncate', string => string)
|
|
|
|
config.stubs['v-popover'] = '<span><slot /></span>'
|
|
config.stubs['nuxt-link'] = '<span><slot /></span>'
|
|
config.stubs['client-only'] = '<span><slot /></span>'
|
|
|
|
describe('CommentList.vue', () => {
|
|
let mocks
|
|
let store
|
|
let wrapper
|
|
let propsData
|
|
|
|
describe('shallowMount', () => {
|
|
beforeEach(() => {
|
|
propsData = {
|
|
post: {
|
|
id: 1,
|
|
comments: [
|
|
{ id: 'comment134', contentExcerpt: 'this is a comment', content: 'this is a comment' },
|
|
],
|
|
},
|
|
}
|
|
store = new Vuex.Store({
|
|
getters: {
|
|
'auth/user': () => {
|
|
return {}
|
|
},
|
|
},
|
|
})
|
|
mocks = {
|
|
$t: jest.fn(),
|
|
$filters: {
|
|
truncate: a => a,
|
|
},
|
|
$apollo: {
|
|
queries: {
|
|
Post: {
|
|
refetch: jest.fn(),
|
|
},
|
|
},
|
|
},
|
|
}
|
|
})
|
|
|
|
const Wrapper = () => {
|
|
return mount(CommentList, {
|
|
store,
|
|
mocks,
|
|
localVue,
|
|
propsData,
|
|
})
|
|
}
|
|
|
|
beforeEach(() => {
|
|
wrapper = Wrapper()
|
|
})
|
|
|
|
it('displays a message icon when there are no comments to display', () => {
|
|
propsData.post.comments = []
|
|
expect(Wrapper().findAll(Empty)).toHaveLength(1)
|
|
})
|
|
|
|
it('displays a comments counter', () => {
|
|
expect(wrapper.find('span.ds-tag').text()).toEqual('1')
|
|
})
|
|
|
|
it('displays comments when there are comments to display', () => {
|
|
expect(wrapper.find('div.comments').text()).toEqual('this is a comment')
|
|
})
|
|
})
|
|
})
|