import { mount } from '@vue/test-utils' import TabMain from '@/views/sapp/tabMain.vue' describe('tabMain.vue', () => { it('renders tab 1 tabMain', () => { const wrapper = mount(TabMain) expect(wrapper.text()).toMatch('tab main') }) })