From 0a0022ead26b489ced730d70e93a33d03e11c5bc Mon Sep 17 00:00:00 2001 From: Marc Cataford Date: Sat, 5 Jun 2021 12:17:39 -0400 Subject: [PATCH] chore: lintfix --- tests/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.test.ts b/tests/index.test.ts index 81ec2fe..647b72f 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -15,7 +15,7 @@ async function prepareWorkspace(): Promise { async function cleanUpWorkspace(paths: string[]): Promise { await Promise.all( - paths.map(async path => fs.rmdir(path, { recursive: true })), + paths.map(async (path) => fs.rmdir(path, { recursive: true })), ) }