Skip to content

Commit

Permalink
Revert "Remove setTimeout"
Browse files Browse the repository at this point in the history
This reverts commit cbf11ab.
  • Loading branch information
marcofugaro committed Mar 14, 2019
1 parent cbf11ab commit 15ee190
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/ContentBase.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ describe('ContentBase', () => {
});

// change a file manually
fs.writeFileSync(nestedFile, 'Heyo', 'utf8');
setTimeout(() => {
fs.writeFileSync(nestedFile, 'Heyo', 'utf8');
}, 1000);
});
});

Expand Down

0 comments on commit 15ee190

Please sign in to comment.