11 lines
321 B
TypeScript
11 lines
321 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import HomePage from '../../src/views/PitcherList.vue'
|
|
import { describe, expect, test } from 'vitest'
|
|
|
|
describe('PitcherList.vue', () => {
|
|
test('renders home vue', () => {
|
|
const wrapper = mount(HomePage)
|
|
expect(wrapper.text()).toMatch('Ready to create an app?')
|
|
})
|
|
})
|