Files
qiaoshi-tooth-web/src/__tests__/App.spec.ts
sleepwithoutbz 4c71b3a711 Init commit.
2025-10-02 22:58:32 +08: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!')
})
})