Skip to content

Commit

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

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

Expand Down

0 comments on commit a3f20db

Please sign in to comment.