Skip to content

Commit 7571d97

Browse files
committed
test: skip fs.watch ignore tests on SunOS
1 parent 9b91d96 commit 7571d97

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

test/parallel/test-fs-watch-ignore-promise.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ if (common.isIBMi)
88
if (common.isAIX)
99
common.skip('folder watch capability is limited in AIX.');
1010

11+
if (common.isSunOS)
12+
common.skip('fs.watch is not reliable on SunOS.');
13+
1114
const assert = require('assert');
1215
const path = require('path');
1316
const fs = require('fs/promises');

test/parallel/test-fs-watch-ignore-recursive.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ if (common.isIBMi)
88
if (common.isAIX)
99
common.skip('folder watch capability is limited in AIX.');
1010

11+
if (common.isSunOS)
12+
common.skip('fs.watch is not reliable on SunOS.');
13+
1114
const assert = require('assert');
1215
const path = require('path');
1316
const fs = require('fs');

test/parallel/test-fs-watch-ignore.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ if (common.isIBMi)
88
if (common.isAIX)
99
common.skip('folder watch capability is limited in AIX.');
1010

11+
if (common.isSunOS)
12+
common.skip('fs.watch is not reliable on SunOS.');
13+
1114
const assert = require('assert');
1215
const path = require('path');
1316
const fs = require('fs');

0 commit comments

Comments
 (0)