javascript.snippets 432 B

123456789101112131415161718192021222324252627282930313233
  1. snippet des "Describe (js)"
  2. describe('${1:description}', () => {
  3. $0
  4. });
  5. snippet it "it (js)"
  6. it('${1:description}', () => {
  7. $0
  8. });
  9. snippet xit "xit (js)"
  10. xit('${1:description}')
  11. snippet bef "before each (js)"
  12. beforeEach(() => {
  13. $0
  14. });
  15. snippet aft "after each (js)"
  16. afterEach(() => {
  17. $0
  18. });
  19. snippet befa "before all (js)"
  20. beforeAll(() => {
  21. $0
  22. });
  23. snippet afta "after all (js)"
  24. afterAll(() => {
  25. $0
  26. });