fixed some frontend tests
All checks were successful
Chore App Build, Test, and Push Docker Images / build-and-push (push) Successful in 3m51s

This commit is contained in:
2026-06-19 18:37:35 -04:00
parent e2bb9cd6b9
commit 06d17e3d34

View File

@@ -1,11 +1,18 @@
import { describe, it, expect } from 'vitest'
import { mount } from '@vue/test-utils'
import { createMemoryHistory, createRouter } from 'vue-router'
import App from '../App.vue'
const mockRouter = createRouter({
history: createMemoryHistory(),
routes: [{ path: '/', name: 'Home', component: { template: '<div />' } }],
})
describe('App', () => {
it('mounts renders properly', () => {
const wrapper = mount(App, {
global: {
plugins: [mockRouter],
stubs: {
'router-view': {
template: '<div>You did it!</div>',