PuffercatApps/tests/unit/example.spec.ts

10 lines
246 B
TypeScript
Raw Permalink Normal View History

2022-12-01 05:58:50 +00:00
import { mount } from '@vue/test-utils'
2022-12-01 10:52:24 +00:00
import Tab1Page from '@/views/Apps.vue'
2022-12-01 05:58:50 +00:00
describe('Tab1Page.vue', () => {
it('renders tab 1 Tab1Page', () => {
const wrapper = mount(Tab1Page)
expect(wrapper.text()).toMatch('Tab 1 page')
})
})