mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import { describe, expect, it } from 'vitest'
|
|
import Test from '../../components/Test.component.vue'
|
|
|
|
describe('CoachInboxItem', () => {
|
|
it('renders', () => {
|
|
const wrapper = mount(Test)
|
|
|
|
expect(wrapper.html()).toContain('hello world')
|
|
})
|
|
})
|