Problem
src/__tests__/App.spec.js is the only unit test in the project and it always fails:
FAIL src/__tests__/App.spec.js > App > mounts renders properly
AssertionError: expected '' to contain 'You did it!'
The test was generated by the Vue CLI scaffold and checks for 'You did it!', text that existed in the default App.vue template but was removed when the application was built out. The test was never updated to reflect the actual component.
Expected
The test should verify real application behaviour — at minimum that App.vue mounts without errors and renders the router outlet.
Impact
The test suite always reports one failure, masking any signal from vitest. It also means the project has effectively zero automated unit-test coverage.
Problem
src/__tests__/App.spec.jsis the only unit test in the project and it always fails:The test was generated by the Vue CLI scaffold and checks for
'You did it!', text that existed in the defaultApp.vuetemplate but was removed when the application was built out. The test was never updated to reflect the actual component.Expected
The test should verify real application behaviour — at minimum that
App.vuemounts without errors and renders the router outlet.Impact
The test suite always reports one failure, masking any signal from
vitest. It also means the project has effectively zero automated unit-test coverage.