Files
termux-packages/packages/nodejs-lts/test-sequential-test-fs-watch.js.patch
termux-pacman-bot 04edb498c3 chore(main/nodejs-lts): pick up changes for how we configure from nodejs
Although --debug is not needed currently for nodejs-lts, let's pick it
up before it is actually needed. Also would make things much more
standard between the two packages
2025-12-10 10:42:59 +00:00

21 lines
667 B
Diff

diff --git a/test/sequential/test-fs-watch.js b/test/sequential/test-fs-watch.js
index 8db27a79e3..12622db443 100644
--- a/test/sequential/test-fs-watch.js
+++ b/test/sequential/test-fs-watch.js
@@ -26,6 +26,7 @@ if (common.isIBMi)
const assert = require('assert');
const fs = require('fs');
+const platform = require('os');
const path = require('path');
const tmpdir = require('../common/tmpdir');
@@ -37,6 +38,7 @@ if (!isMainThread) {
const expectFilePath = common.isWindows ||
common.isLinux ||
+ platform() == 'android' ||
common.isMacOS ||
common.isAIX;