Initial commit

This commit is contained in:
Florian Sylvain
2024-03-25 12:06:42 +01:00
commit 9d33539a0b
29 changed files with 9464 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { mount } from '@vue/test-utils'
import Tab1Page from '@/views/Tab1Page.vue'
import { describe, expect, test } from 'vitest'
describe('Tab1Page.vue', () => {
test('renders tab 1 Tab1Page', () => {
const wrapper = mount(Tab1Page)
expect(wrapper.text()).toMatch('Tab 1 page')
})
})