Files
riwa-ionic/tests/unit/example.spec.ts
2025-12-10 23:59:23 +07:00

11 lines
300 B
TypeScript

import { mount } from '@vue/test-utils'
import Tab1Page from '@/views/Tab1Page.vue'
import { describe, expect, test } from 'vitest'
describe('Tab1Page.vue', () => {
test('renders tab 1 Tab1Page', () => {
const wrapper = mount(Tab1Page)
expect(wrapper.text()).toMatch('Tab 1 page')
})
})