import { describe, it, expect } from 'vitest' import { mount } from '@vue/test-utils' import App from './App.vue' describe('Smoke Test', () => { it('mounts properly', () => { const wrapper = mount(App) expect(wrapper.exists()).toBe(true) }) it('renders header text', () => { const wrapper = mount(App) expect(wrapper.text()).toContain('HAUMDAUCHER') }) })