example.spec.ts 248 B

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