Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. describe('UsersListRow', () => {
  2. describe('props', () => {
  3. it('name - should render the name on the component', () => {
  4. // Test Implementation
  5. })
  6. })
  7.  
  8. describe('User Interaction', () => {
  9. it('click on component - should emit a "view" event', () => {
  10. // Test Implementation
  11. })
  12.  
  13. it('click on edit icon - should emit an "edit" event', () => {
  14. // Test Implementation
  15. })
  16.  
  17. it('click on delete icon - should emit a "delete" event', () => {
  18. // Test Implementation
  19. })
  20. })
  21. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement