Created
May 12, 2019 05:22
-
-
Save achhunna/461ad78afa0eeed00423f1260ffa8e04 to your computer and use it in GitHub Desktop.
DOM action events
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test('emit events when close-btn clicked', () => { | |
const closeBtn = wrapper.find('.close-btn'); | |
closeBtn.trigger('click'); | |
expect(wrapper.emitted().close.length).toBe(1); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment