import { config, mount } from '@vue/test-utils' import _id from './_id.vue' const localVue = global.localVue config.stubs['nuxt-child'] = '' describe('post/_id.vue', () => { let wrapper let mocks beforeEach(() => { mocks = { $t: jest.fn(), $route: { params: { id: '1234', slug: 'my-post', }, }, $env: { CATEGORIES_ACTIVE: false, }, } }) describe('mount', () => { const Wrapper = () => { return mount(_id, { mocks, localVue }) } beforeEach(() => { wrapper = Wrapper() }) it('renders', () => { expect(wrapper.findAll('.post-side-navigation')).toHaveLength(1) }) }) })