feat: init client and desktop

This commit is contained in:
Arduinum
2025-12-28 19:25:23 +03:00
committed by Arduinum628
parent e757f03067
commit 541a44fa15
50 changed files with 15347 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?')
})
})