Skip to content

Commit

Permalink
test(index): add done on after hook
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Jul 8, 2017
1 parent 38792ce commit f1b0132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ describe('fs', function() {
return fs.mkdirs(tmpDir);
});

after(function() {
return fs.rmdir(tmpDir);
after(function(done) {
return fs.rmdir(tmpDir).finally(done);
});

it('exists()', function() {
Expand Down

0 comments on commit f1b0132

Please sign in to comment.