Unit test not firing back a change event #1509
Unanswered
globalrewardsusa-vahava
asked this question in
Help Wanted
Replies: 1 comment
-
@globalrewardsusa-vahava Did you ever discover a work around for this? Currently running into this exact issue and have had no luck finding a solution. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've tried creating a unit test for v-select but with everything I do, I cannot have the component fire back a change event.
element :
<v-select data-testid="shippingState" :options="states" :selected="form.cardState" @input="changeShippingState" />
In this example I'm using @testing-library/vue
I can see the value is set but @input="changeShippingState" callback is never called.
Beta Was this translation helpful? Give feedback.
All reactions