summaryrefslogtreecommitdiff
path: root/app/tests/unit/example.spec.ts
blob: f32b23b9b56005964d197e2b86a059b22c7347a9 (plain)
1
2
3
4
5
6
7
8
9
import { mount } from '@vue/test-utils'
import Tab1Page from '@/views/Tab1Page.vue'

describe('Tab1Page.vue', () => {
  it('renders tab 1 Tab1Page', () => {
    const wrapper = mount(Tab1Page)
    expect(wrapper.text()).toMatch('Tab 1 page')
  })
})