summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-long-path.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-fs-long-path.js')
-rw-r--r--test/parallel/test-fs-long-path.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/parallel/test-fs-long-path.js b/test/parallel/test-fs-long-path.js
index b8aa6a2ac8..ae60b16f1a 100644
--- a/test/parallel/test-fs-long-path.js
+++ b/test/parallel/test-fs-long-path.js
@@ -21,15 +21,13 @@
'use strict';
const common = require('../common');
+if (!common.isWindows)
+ common.skip('this test is Windows-specific.');
+
const fs = require('fs');
const path = require('path');
const assert = require('assert');
-if (!common.isWindows) {
- common.skip('this test is Windows-specific.');
- return;
-}
-
// make a path that will be at least 260 chars long.
const fileNameLen = Math.max(260 - common.tmpDir.length - 1, 1);
const fileName = path.join(common.tmpDir, 'x'.repeat(fileNameLen));