Skip to content

Commit

Permalink
use rm instead of rmdir
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinMalfait committed Oct 17, 2022
1 parent 0af3c5c commit 45ff957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion standalone-cli/tests/test.js
Expand Up @@ -85,6 +85,6 @@ async function inIsolatedContext(fn) {
process.chdir(__dirname)

// Delete the new directory
await fs.rmdir(dest, { recursive: true })
await fs.rm(dest, { recursive: true })
}
}

0 comments on commit 45ff957

Please sign in to comment.