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 })), ) }