Skip to content

Commit

Permalink
test: make tmpdir.js importable from esm
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoffreyBooth committed Aug 22, 2022
1 parent a5671e2 commit e5e1009
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/common/tmpdir.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ const tmpPath = path.join(testRoot, tmpdirName);

let firstRefresh = true;
function refresh() {
rmSync(this.path);
fs.mkdirSync(this.path);
rmSync(tmpPath);
fs.mkdirSync(tmpPath);

if (firstRefresh) {
firstRefresh = false;
Expand Down

0 comments on commit e5e1009

Please sign in to comment.