Custom Events
In this lesson, we'll see several cases for testing Custom Events.
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
Message
components trigger amessage-clicked
when a message gets clicked - Checking that when a
message-clicked
occurs, ahandleMessageClick
function is called inMessageList
Step 1:
First, go to Message.vue
and use $emit
to trigger that custom event:
Get hands-on with 1200+ tech skills courses.