2014-04-21 14:07:28 -04:00
|
|
|
priority -50
|
|
|
|
|
|
|
|
snippet iti "it (js, inject)" b
|
|
|
|
it('${1:description}', inject(function($2) {
|
|
|
|
$0
|
|
|
|
}));
|
|
|
|
endsnippet
|
|
|
|
|
|
|
|
snippet befi "before each (js, inject)" b
|
|
|
|
beforeEach(inject(function($1) {
|
|
|
|
$0
|
|
|
|
}));
|
|
|
|
endsnippet
|
|
|
|
|
2014-04-21 14:12:28 -04:00
|
|
|
snippet aconf "angular config" i
|
2014-04-21 14:07:28 -04:00
|
|
|
config(function($1) {
|
|
|
|
$0
|
|
|
|
});
|
|
|
|
endsnippet
|
2014-04-21 14:12:28 -04:00
|
|
|
|
|
|
|
snippet acont "angular controller" i
|
|
|
|
controller('${1:name}', function($2) {
|
|
|
|
$0
|
|
|
|
});
|
|
|
|
endsnippet
|