Description
What problem does this feature solve?
In the official documentation on testing, the following is mentioned when suggesting the 2 libraries that can be used for testing:
Vue Test Utils is the official low-level component testing library that was written to provide users access to Vue specific APIs. If you are new to testing Vue applications, we would recommend using Vue Testing Library, which is an abstraction over Vue Test Utils.
The recommendation for new users is to use @testing-library/vue.
However, @vue/cli-plugin-unit-jest
doesn't actually install @testing-library/vue
, but @vue/test-utils
I find it to be unintuitive that despite the recommendation, the more low-level (and "harder to use") alternative is installed by default.
It's probably not a good idea to install both by default, but if we have to pick one, @testing-library/vue
seems like the obvious choice to me.
The users who would be more likely to go with @vue/test-utils
instead, are more likely to be more experienced, and will have a better understanding of the alternatives.
What does the proposed API look like?
Change
to add@testing-library/vue
instead
Happy to open a PR on this myself