Revert "es6ify js snippets"

This reverts commit accb586c6e.
This commit is contained in:
Thomas Ruoff
2017-03-08 18:14:34 +01:00
parent f3fa8db550
commit 31448fb344
2 changed files with 46 additions and 10 deletions

View File

@@ -5,37 +5,37 @@ priority -50
# #
snippet des "Describe (js)" b snippet des "Describe (js)" b
describe('${1:description}', () => { describe('${1:description}', function() {
$0 $0
}); });
endsnippet endsnippet
snippet it "it (js)" b snippet it "it (js)" b
it('${1:description}', () => { it('${1:description}', function() {
$0 $0
}); });
endsnippet endsnippet
snippet bef "before each (js)" b snippet bef "before each (js)" b
beforeEach(() => { beforeEach(function() {
$0 $0
}); });
endsnippet endsnippet
snippet aft "after each (js)" b snippet aft "after each (js)" b
afterEach(() => { afterEach(function() {
$0 $0
}); });
endsnippet endsnippet
snippet befa "before all (js)" b snippet befa "before all (js)" b
beforeAll(() => { beforeAll(function() {
$0 $0
}); });
endsnippet endsnippet
snippet afta "after all (js)" b snippet afta "after all (js)" b
afterAll(() => { afterAll(function() {
$0 $0
}); });
endsnippet endsnippet
@@ -63,7 +63,7 @@ jasmine.stringMatching("${1:matcher}")
endsnippet endsnippet
snippet ru "runs (js)" b snippet ru "runs (js)" b
runs(() => { runs(function() {
$0 $0
}); });
endsnippet endsnippet

View File

@@ -5,11 +5,47 @@ priority -30
snippet def "define an AMD module" snippet def "define an AMD module"
define([ define([
'${1:backbone}' '${1:backbone}'
], ( ], function(
${2:Backbone}) ${2:Name})
) => { ) {
$0 $0
} }
endsnippet endsnippet
# Jasmine
snippet des "Describe (js)" b
describe('${1:description}', function() {
$0
});
endsnippet
snippet it "it (js)" b
it('${1:description}', function() {
$0
});
endsnippet
snippet bef "before each (js)" b
beforeEach(function() {
$0
});
endsnippet
snippet aft "after each (js)" b
afterEach(function() {
$0
});
endsnippet
snippet befa "before all (js)" b
beforeAll(function() {
$0
});
endsnippet
snippet afta "after all (js)" b
afterAll(function() {
$0
});
endsnippet
# vim:ft=snippets: # vim:ft=snippets: