Initial Commit / Nuxt.js boilerplate

This commit is contained in:
2020-10-03 12:21:34 +02:00
parent 105da2733f
commit f3d97da867
23 changed files with 15685 additions and 1 deletions

9
test/Logo.spec.js Normal file
View File

@@ -0,0 +1,9 @@
import { mount } from '@vue/test-utils'
import Logo from '@/components/Logo.vue'
describe('Logo', () => {
test('is a Vue instance', () => {
const wrapper = mount(Logo)
expect(wrapper.vm).toBeTruthy()
})
})