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