summaryrefslogtreecommitdiff
path: root/test/parallel/test-process-execpath.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-process-execpath.js')
-rw-r--r--test/parallel/test-process-execpath.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/parallel/test-process-execpath.js b/test/parallel/test-process-execpath.js
index 5ac8a3f223..d70d1dfd38 100644
--- a/test/parallel/test-process-execpath.js
+++ b/test/parallel/test-process-execpath.js
@@ -1,5 +1,8 @@
'use strict';
const common = require('../common');
+if (common.isWindows)
+ common.skip('symlinks are weird on windows');
+
const assert = require('assert');
const child_process = require('child_process');
const path = require('path');
@@ -7,11 +10,6 @@ const fs = require('fs');
assert.strictEqual(process.execPath, fs.realpathSync(process.execPath));
-if (common.isWindows) {
- common.skip('symlinks are weird on windows');
- return;
-}
-
if (process.argv[2] === 'child') {
// The console.log() output is part of the test here.
console.log(process.execPath);