Custom Events
Explore how to test custom events in Vue.js components using Jest. Understand how to assert event triggers, test event handlers with mocks and spies, and verify event emissions to ensure your components communicate correctly.
Custom Events
We can test at least two things in Custom Events:
- Asserting that after an action, an event gets triggered
- Checking what an event listener calls when it gets triggered
In the case of the MessageList.vue and Message.vue components example, that gets translated to:
- Asserting that
Messagecomponents trigger amessage-clickedwhen a message gets clicked - Checking that when a
message-clickedoccurs, ahandleMessageClickfunction is called inMessageList
Step 1:
First, go to Message.vue and use $emit to trigger that custom event:
Then, in ...