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.
This commit is contained in:
Ade Attwood 2024-01-08 17:38:38 +00:00
parent 44d8c3c677
commit 48a18162a0

View file

@ -3,6 +3,6 @@
# contributor: Ade Attwood <code@adeattwood.co.uk> # contributor: Ade Attwood <code@adeattwood.co.uk>
# filetypes: javascript,javascriptreact,typescript,typescriptreact # filetypes: javascript,javascriptreact,typescript,typescriptreact
# -- # --
it('${1}', ${2:async}() => { it('${1}', () => {
${0} ${0}
}); });