internet_ml/web/frontend/test/NuxtLogo.spec.js

10 lines
247 B
TypeScript
Raw Normal View History

2023-01-01 16:16:42 +00:00
import { mount } from '@vue/test-utils'
import NuxtLogo from '@/components/NuxtLogo.vue'
describe('NuxtLogo', () => {
test('is a Vue instance', () => {
const wrapper = mount(NuxtLogo)
expect(wrapper.vm).toBeTruthy()
})
})