From 8ca8c7c654795f8a56217bd3e0a92f1274ff05d5 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Tue, 25 Sep 2018 22:50:34 +0200 Subject: [PATCH] fix before/afterEach snippet --- vim/.vim/UltiSnips/javascript.snippets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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