From b8dbba6c4bafaa27410ba1806eb4c661c4ef4ad7 Mon Sep 17 00:00:00 2001 From: jonathantneal Date: Tue, 15 Feb 2022 15:52:31 +0000 Subject: [PATCH] [ci] yarn format --- scripts/smoke/cleanup.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/smoke/cleanup.js b/scripts/smoke/cleanup.js index 2910835408..37a5f5d29d 100644 --- a/scripts/smoke/cleanup.js +++ b/scripts/smoke/cleanup.js @@ -23,19 +23,19 @@ const rootDir = new URL('../../', import.meta.url); /** Runs all smoke tests. */ async function run() { - const dirs = await getChildDirectories(scriptDir) + const dirs = await getChildDirectories(scriptDir); if (dirs.length) { - console.log() + console.log(); for (const dir of await getChildDirectories(scriptDir)) { console.log('🤖', 'Removing', dir.pathname.split('/').at(-1)); - fs.rm(dir, { force: true, recursive: true }) + fs.rm(dir, { force: true, recursive: true }); } } - console.log() + console.log(); console.log('🤖', 'Resetting', 'yarn');