Initial commit

This commit is contained in:
2025-10-13 16:22:46 +01:00
commit c28f12d077
26 changed files with 10277 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { mount } from '@vue/test-utils'
import HomePage from '@/views/HomePage.vue'
import { describe, expect, test } from 'vitest'
describe('HomePage.vue', () => {
test('renders home vue', () => {
const wrapper = mount(HomePage)
expect(wrapper.text()).toMatch('Ready to create an app?')
})
})