diff --git a/test/ContentBase.test.js b/test/ContentBase.test.js index c3c4a7829b..06cf5b789b 100644 --- a/test/ContentBase.test.js +++ b/test/ContentBase.test.js @@ -59,7 +59,9 @@ describe('ContentBase', () => { }); // change a file manually - fs.writeFileSync(nestedFile, 'Heyo', 'utf8'); + setTimeout(() => { + fs.writeFileSync(nestedFile, 'Heyo', 'utf8'); + }, 1000); }); });