Explorar el Código

Add xit snippet for javascript testing

Andrew Swistak hace 6 años
padre
commit
3bb88808f2
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      vim/snippets/javascript.snippets

+ 3 - 0
vim/snippets/javascript.snippets

@@ -8,6 +8,9 @@ snippet it "it (js)"
 		$0
 	});
 
+snippet xit "xit (js)"
+	xit('${1:description}')
+
 snippet bef "before each (js)"
 	beforeEach(() => {
 		$0