import { mount } from '@vue/test-utils' import Categories from './categories.vue' const localVue = global.localVue describe('categories.vue', () => { let wrapper let mocks beforeEach(() => { mocks = { $t: jest.fn(), } }) describe('mount', () => { const Wrapper = () => { return mount(Categories, { mocks, localVue, }) } beforeEach(() => { wrapper = Wrapper() }) it('renders', () => { expect(wrapper.classes('base-card')).toBe(true) }) }) })