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?') }) })