Skip to content

Commit

Permalink
test - prove that optional options works
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Mar 21, 2015
1 parent 5f50545 commit b15779d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,8 @@ it('return deleted files - async', function (cb) {
cb();
});
});

it('options are optional', function (cb) {
del.sync('1.tmp');
del('1.tmp', cb);
});

0 comments on commit b15779d

Please sign in to comment.