diff --git a/src/res/node.exe.extra.manifest b/src/res/node.exe.extra.manifest
index e2e9f175473305..8be0a7e830153e 100644
--- a/src/res/node.exe.extra.manifest
+++ b/src/res/node.exe.extra.manifest
@@ -14,4 +14,9 @@
+
+
+ true
+
+
diff --git a/test/parallel/test-fs-long-path.js b/test/parallel/test-fs-long-path.js
index 1cb66fa6046152..3f808496ae53f2 100644
--- a/test/parallel/test-fs-long-path.js
+++ b/test/parallel/test-fs-long-path.js
@@ -43,4 +43,7 @@ console.log({
fs.writeFile(fullPath, 'ok', common.mustSucceed(() => {
fs.stat(fullPath, common.mustSucceed());
+
+ // Tests https://github.com/nodejs/node/issues/39721
+ fs.realpath.native(fullPath, common.mustSucceed());
}));