From 48a18162a090502ad18e495962e1eb3e805ac46f Mon Sep 17 00:00:00 2001 From: Ade Attwood Date: Mon, 8 Jan 2024 17:38:38 +0000 Subject: [PATCH] chore(vim): remove async from the default test We are now adding lints test that disable async tests that do not use await in them. I am by far the biggest offender for this and this is one of the main reasons. Now any test I write will be synchronous by default until I need it to be async. --- site-modules/core/files/vim/snippets/snippets/js/it.snippet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-modules/core/files/vim/snippets/snippets/js/it.snippet b/site-modules/core/files/vim/snippets/snippets/js/it.snippet index 900aace..42af20a 100644 --- a/site-modules/core/files/vim/snippets/snippets/js/it.snippet +++ b/site-modules/core/files/vim/snippets/snippets/js/it.snippet @@ -3,6 +3,6 @@ # contributor: Ade Attwood # filetypes: javascript,javascriptreact,typescript,typescriptreact # -- -it('${1}', ${2:async}() => { +it('${1}', () => { ${0} });