summaryrefslogtreecommitdiff
path: root/test/parallel/test-cluster-http-pipe.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-cluster-http-pipe.js')
-rw-r--r--test/parallel/test-cluster-http-pipe.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/test/parallel/test-cluster-http-pipe.js b/test/parallel/test-cluster-http-pipe.js
index 93b457fd80..96f741e804 100644
--- a/test/parallel/test-cluster-http-pipe.js
+++ b/test/parallel/test-cluster-http-pipe.js
@@ -22,16 +22,15 @@
'use strict';
const common = require('../common');
-const assert = require('assert');
-const cluster = require('cluster');
-const http = require('http');
-
if (common.isWindows) {
common.skip(
'It is not possible to send pipe handles over the IPC pipe on Windows');
- return;
}
+const assert = require('assert');
+const cluster = require('cluster');
+const http = require('http');
+
if (cluster.isMaster) {
common.refreshTmpDir();
const worker = cluster.fork();