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 1d96803 commit aafd390Copy full SHA for aafd390
1 file changed
test/parallel/test-fs-options-immutable.js
@@ -58,21 +58,17 @@ if (common.canCreateSymLink()) {
58
);
59
}
60
61
-if (!common.isAix) {
62
- // TODO(thefourtheye) Remove this guard once
63
- // https://github.com/nodejs/node/issues/5085 is fixed
64
- {
65
- let watch;
66
- assert.doesNotThrow(() => {
67
- watch = fs.watch(__filename, options, common.noop);
68
- });
69
- watch.close();
70
- }
+{
+ let watch;
+ assert.doesNotThrow(() => {
+ watch = fs.watch(__filename, options, common.noop);
+ });
+ watch.close();
+}
71
72
73
- assert.doesNotThrow(() => fs.watchFile(__filename, options, common.noop));
74
- fs.unwatchFile(__filename);
75
+ assert.doesNotThrow(() => fs.watchFile(__filename, options, common.noop));
+ fs.unwatchFile(__filename);
76
77
78
{
0 commit comments