diff --git a/test/pummel/test-fs-watch-non-recursive.js b/test/pummel/test-fs-watch-non-recursive.js index c459acb14ec483..b9a6cd6dcfb1d0 100644 --- a/test/pummel/test-fs-watch-non-recursive.js +++ b/test/pummel/test-fs-watch-non-recursive.js @@ -25,19 +25,13 @@ const path = require('path'); const fs = require('fs'); const tmpdir = require('../common/tmpdir'); +tmpdir.refresh(); const testDir = tmpdir.path; const testsubdir = path.join(testDir, 'testsubdir'); const filepath = path.join(testsubdir, 'watch.txt'); -function cleanup() { - try { fs.unlinkSync(filepath); } catch { } - try { fs.rmdirSync(testsubdir); } catch { } -} -process.on('exit', cleanup); -cleanup(); - -try { fs.mkdirSync(testsubdir, 0o700); } catch {} +fs.mkdirSync(testsubdir, 0o700); // Need a grace period, else the mkdirSync() above fires off an event. setTimeout(function() {