Setup Docker Compose environnement for local dev

This commit is contained in:
2020-10-03 16:00:47 +02:00
parent f3d97da867
commit b840476668
27 changed files with 87 additions and 37 deletions

9
nuxt/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()
})
})