We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c17df81 + b1af469 commit ebdc61fCopy full SHA for ebdc61f
UltiSnips/javascript_angular.snippets
@@ -0,0 +1,25 @@
1
+priority -50
2
+
3
+snippet iti "it (js, inject)" b
4
+it('${1:description}', inject(function($2) {
5
+ $0
6
+}));
7
+endsnippet
8
9
+snippet befi "before each (js, inject)" b
10
+beforeEach(inject(function($1) {
11
12
13
14
15
+snippet aconf "angular config" i
16
+config(function($1) {
17
18
+});
19
20
21
+snippet acont "angular controller" i
22
+controller('${1:name}', function($2) {
23
24
25
0 commit comments