mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
coverage delete-account.spec.js
This commit is contained in:
parent
782f5dcce8
commit
af6bc6ea2f
42
webapp/pages/settings/delete-account.spec.js
Normal file
42
webapp/pages/settings/delete-account.spec.js
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
import Vuex from 'vuex'
|
||||||
|
import { mount } from '@vue/test-utils'
|
||||||
|
import DeleteAccount from './delete-account.vue'
|
||||||
|
|
||||||
|
const localVue = global.localVue
|
||||||
|
|
||||||
|
describe('delete-account.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' }
|
||||||
|
},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
describe('mount', () => {
|
||||||
|
const Wrapper = () => {
|
||||||
|
return mount(DeleteAccount, {
|
||||||
|
store,
|
||||||
|
mocks,
|
||||||
|
localVue,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
wrapper = Wrapper()
|
||||||
|
})
|
||||||
|
|
||||||
|
it('renders', () => {
|
||||||
|
expect(wrapper.is('.delete-data')).toBe(true)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
Loading…
x
Reference in New Issue
Block a user