Skip to content

Commit

Permalink
tests: fix issue running tests on node 10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
fdintino committed Jan 7, 2019
1 parent 692afec commit 7c187ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

function rmdir(dirPath) {
fs.emptyDirSync(dirPath);
fs.rmdir(dirPath);
fs.rmdirSync(dirPath);
}

describe('nunjucks.configure', function() {
Expand Down

0 comments on commit 7c187ac

Please sign in to comment.