Skip to content

Commit 5f1a59c

Browse files
benjamingrruyadorno
authored andcommitted
test: make fs watch test more stable
PR-URL: #41715 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent e6a1896 commit 5f1a59c

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

‎test/pummel/test-fs-watch-non-recursive.js‎

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if (common.isIBMi){
2828

2929
constpath=require('path');
3030
constfs=require('fs');
31-
31+
constassert=require('assert');
3232
consttmpdir=require('../common/tmpdir');
3333
tmpdir.refresh();
3434

@@ -38,13 +38,14 @@ const filepath = path.join(testsubdir, 'watch.txt');
3838

3939
fs.mkdirSync(testsubdir,0o700);
4040

41-
// Need a grace period, else the mkdirSync() above fires off an event.
42-
setTimeout(function(){
43-
constwatcher=fs.watch(testDir,{persistent: true},common.mustNotCall());
44-
setTimeout(function(){
45-
fs.writeFileSync(filepath,'test');
46-
},100);
47-
setTimeout(function(){
48-
watcher.close();
49-
},500);
50-
},50);
41+
constwatcher=fs.watch(testDir,{persistent: true},(event,filename)=>{
42+
// This function may be called with the directory depending on timing but
43+
// must not be called with the file..
44+
assert.strictEqual(filename,'testsubdir');
45+
});
46+
setTimeout(()=>{
47+
fs.writeFileSync(filepath,'test');
48+
},100);
49+
setTimeout(()=>{
50+
watcher.close();
51+
},500);

0 commit comments

Comments
(0)