vuetify-demo/tests/unit/example.spec.js

8 lines
210 B
JavaScript

import { shallowMount } from '@vue/test-utils'
import App from '@/App.vue'
test('App should work', () => {
const wrapper = shallowMount(App)
expect(wrapper.text()).toMatch('Welcome to Your Vue.js App')
})