12 lines
272 B
TypeScript
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!')
|
|
})
|
|
})
|