mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
44 lines
1022 B
JavaScript
44 lines
1022 B
JavaScript
import { mount } from '@vue/test-utils'
|
|
import CodeOfConduct from './code-of-conduct.vue'
|
|
import VueMeta from 'vue-meta'
|
|
|
|
const localVue = global.localVue
|
|
localVue.use(VueMeta, { keyName: 'head' })
|
|
|
|
// avoid: 'Error: Not implemented: navigation (except hash changes)', see https://stackoverflow.com/questions/54090231/how-to-fix-error-not-implemented-navigation-except-hash-changes
|
|
const assignMock = jest.fn()
|
|
delete window.location
|
|
window.location = { assign: assignMock }
|
|
|
|
describe('code-of-conduct.vue', () => {
|
|
let wrapper
|
|
let mocks
|
|
|
|
beforeEach(() => {
|
|
mocks = {
|
|
$t: (t) => t,
|
|
}
|
|
})
|
|
|
|
describe('mount', () => {
|
|
const Wrapper = () => {
|
|
return mount(CodeOfConduct, {
|
|
mocks,
|
|
localVue,
|
|
})
|
|
}
|
|
|
|
beforeEach(() => {
|
|
wrapper = Wrapper()
|
|
})
|
|
|
|
it('renders', () => {
|
|
expect(wrapper.element.tagName).toBe('DIV')
|
|
})
|
|
|
|
it('has correct <head> content', () => {
|
|
expect(wrapper.vm.$metaInfo.title).toBe('site.code-of-conduct')
|
|
})
|
|
})
|
|
})
|