Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. describe('<Component Name>', () => {
  2. describe('props', () => {
  3. it('<prop> - <test description>', () => {
  4. // Test Implementation
  5. })
  6. })
  7.  
  8. describe('store', () => {
  9. it('<data> - <test description>', () => {
  10. // Test Implementation
  11. })
  12. })
  13.  
  14. describe('User Interactions', () => {
  15. it('<interaction> - <test description>', () => {
  16. // Test Implementation
  17. })
  18. })
  19.  
  20. describe('<ChildComponent> events', () => {
  21. it('<event> - <test description>', () => {
  22. // Test Implementation
  23. })
  24. })
  25. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement