We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a31819a commit 3a5374cCopy full SHA for 3a5374c
test/parallel/test-fs-readfile-error.js
@@ -24,9 +24,9 @@ const common = require('../common');
24
25
// Test that fs.readFile fails correctly on a non-existent file.
26
27
-// `fs.readFile('/')` does not fail on FreeBSD, because you can open and read
28
-// the directory there.
29
-if (common.isFreeBSD)
+// `fs.readFile('/')` does not fail on AIX and FreeBSD because you can open
+// and read the directory there.
+if (common.isAIX || common.isFreeBSD)
30
common.skip('platform not supported.');
31
32
const assert = require('assert');
0 commit comments