coverage privacy.spec.js

This commit is contained in:
Ulf Gebhardt 2021-04-25 20:36:34 +02:00
parent e5ff917d8d
commit e6de7b1de8
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -0,0 +1,42 @@
import Vuex from 'vuex'
import { mount } from '@vue/test-utils'
import Privacy from './privacy.vue'
const localVue = global.localVue
describe('privacy.vue', () => {
let wrapper
let mocks
let store
beforeEach(() => {
mocks = {
$t: jest.fn(),
}
store = new Vuex.Store({
getters: {
'auth/user': () => {
return { id: 'u343', name: 'Delete MyAccount', showShoutsPublicly: true }
},
},
})
})
describe('mount', () => {
const Wrapper = () => {
return mount(Privacy, {
store,
mocks,
localVue,
})
}
beforeEach(() => {
wrapper = Wrapper()
})
it('renders', () => {
expect(wrapper.is('.base-card')).toBe(true)
})
})
})