We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb81880 commit dce1c09Copy full SHA for dce1c09
test/parallel/test-fs-exists.js
@@ -8,6 +8,8 @@ fs.exists(f, common.mustCall(function(y) {
8
assert.strictEqual(y, true);
9
}));
10
11
+assert.doesNotThrow(() => fs.exists(f));
12
+
13
fs.exists(`${f}-NO`, common.mustCall(function(y) {
14
assert.strictEqual(y, false);
15
0 commit comments