Vladimir b43a6f4767
fix: respect base (#438)
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2022-01-05 05:51:21 +08:00

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')
})
})