test-utils
test-utils copied to clipboard
Vue Test Utils for Vue 3
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more.[View this repository on the Mend.io Web Portal](https://developer.mend.io/github/vuejs/test-utils). ## Config Migration Needed - [ ]...
We'll need to update the ESLint configuration for v9
## Problem `` is now widely adopted as the way to make Rich text editors on the web. I've noticed that we cannot set the value of these elementes using...
**Describe the bug** I'm migrating vue2 to vue3 (test utils too) In vue2 if I had global plugin that was installed with `createLocalVue` then it was accessible under `wrapper.vm` (e.g...
Hi, I started getting the error below after upgrading from `2.2.1` to `2.2.2`. ``` Received message: "_ctx.hasIcon is not a function" 209 | props.countryCode.charAt(0).toUpperCase() + 210 | props.countryCode.slice(1), > 211...
I want with this issue to inform you that I am working on the translation of the documentation to Portuguese. To everyone interested on following the progress of the translation...
`stubs` has an important limitation for years - you can't stub anonymous component. Let me show that in code: ```js const AnonymousComponent = { template: 'anonymous' } const Component =...
**Describe the bug** With `shallowMount` on Vue 3 + @vue/compat, properties of a child component are undefined when using them through a mixin. If the property is moved from the...
`@vue/server-renderer` and `@vue/compiler-dom` were both required in the sense that they will throw regardless of whether or not your are using functionality from those libraries if they weren't installed. I...
**Describe the bug** Starting in 2.4.2 (works in 2.4.1), when passing props to `mount` whose type is a union, a type error is raised. ``` Type '{ foo: string; }...