Files
vuetify-material-dashboard/tests/unit/example.spec.js
Gregor Schulte c1abe6ae1e Init
2023-03-29 10:11:51 +02:00

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')
})