Skip to content

Commit

Permalink
[ci] yarn format
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal authored and actions-user committed Feb 15, 2022
1 parent fb9a77b commit b8dbba6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/smoke/cleanup.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

Expand Down

0 comments on commit b8dbba6

Please sign in to comment.