python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Vue component doing async hangs at await while jest testing
I'm trying to test a component that loads data asynchronously when mounted. The component works as expected, it's just the test that's giving me issues. The component's async loadData() function hangs...

velis
Votes: 0
Answers: 1
Vuejs testing library - how to write a test to handle axios request in "mounted" hook
I have a vue component that fetches data from an api in the "created" function. I'm just getting up and running using the following testing stack:
"devDependencies": {
"...
karns
Votes: 0
Answers: 0
Vue test utils for Vue3 : document is not defined
I try to bootstrap a simple app based on the following Vue3, Vite, Vitest
I also installed the vue 3 compatible version of vue test utils to test vue components.
I have an error trying to replicate th...

Pierre_T
Votes: 0
Answers: 4
Vue test utils: how to setProps if they are used in mounted()
I'm using jest / vue-test-utils to test a component, and I can't find a way to set props if they are used in mounted().
The component has one prop queryFilter: { type: Object } which is used within th...
daniel p
Votes: 0
Answers: 1