import { describe, it, expect } from 'vitest'
import { mountSuspended } from '@nuxt/test-utils/runtime'
import LocationSelection from '../LocationSelection.vue'
describe('LocationSelection.vue', () => {
it('test', async () => {
const wrapper = await mountSuspended(LocationSelection)
await wrapper.vm.$nextTick()
console.log(wrapper.html())
expect(wrapper.text()).toContain('333')
})
})
import { describe, it, expect } from 'vitest'
import { mountSuspended } from '@nuxt/test-utils/runtime'
import LocationSelection from '../LocationSelection.vue'
describe('LocationSelection.vue', () => {
it('test', async () => {
const wrapper = await mountSuspended(LocationSelection)
await wrapper.vm.$nextTick()
console.log(wrapper.html())
expect(wrapper.text()).toContain('333')
})
})