Skip to content
This repository was archived by the owner on Aug 31, 2018. It is now read-only.

Commit 75c6d54

Browse files
NigelKibodeauxaddaleax
authored andcommittedDec 7, 2017
test: increase fs.exists coverage
PR-URL: nodejs/node#15963 Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent bbefaf3 commit 75c6d54

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎test/parallel/test-fs-exists.js

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ fs.exists(f, common.mustCall(function(y) {
3030
assert.strictEqual(y, true);
3131
}));
3232

33+
assert.doesNotThrow(() => fs.exists(f));
34+
3335
fs.exists(`${f}-NO`, common.mustCall(function(y) {
3436
assert.strictEqual(y, false);
3537
}));

0 commit comments

Comments
 (0)