You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
2 years ago
|
import { mount } from '@vue/test-utils'
|
||
|
import HomePage from '@/views/HomePage.vue'
|
||
|
import { describe, expect, test } from 'vitest'
|
||
|
|
||
|
describe('HomePage.vue', () => {
|
||
|
test('renders home vue', () => {
|
||
|
const wrapper = mount(HomePage)
|
||
|
expect(wrapper.text()).toMatch('Ready to create an app?')
|
||
|
})
|
||
|
})
|