diff --git a/vim/.vim/UltiSnips/javascript.snippets b/vim/.vim/UltiSnips/javascript.snippets index bb99af9..c9f1c41 100644 --- a/vim/.vim/UltiSnips/javascript.snippets +++ b/vim/.vim/UltiSnips/javascript.snippets @@ -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