cv_2026/src/__tests__/App.spec.ts
jl 93c7dd0d0e
All checks were successful
CV build / build (push) Successful in 1m32s
init vue and build
2026-04-20 16:04:12 +02:00

12 lines
272 B
TypeScript

import { describe, it, expect } from 'vitest'
import { mount } from '@vue/test-utils'
import App from '../App.vue'
describe('App', () => {
it('mounts renders properly', () => {
const wrapper = mount(App)
expect(wrapper.text()).toContain('You did it!')
})
})