fix before/afterEach snippet

This commit is contained in:
Thomas Ruoff
2018-09-25 22:50:34 +02:00
parent 01570e3629
commit 8ca8c7c654

View File

@@ -322,13 +322,13 @@ it('$1', () => {
endsnippet
snippet bef "Jasmine beforeEach"
beforeEach('$1', () => {
beforeEach(() => {
${0:${VISUAL}}
});
endsnippet
snippet aft "Jasmine afterEach"
afterEach('$1', () => {
afterEach(() => {
${0:${VISUAL}}
});
endsnippet