summaryrefslogtreecommitdiff
path: root/test/parallel/test-cluster-dgram-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-cluster-dgram-1.js')
-rw-r--r--test/parallel/test-cluster-dgram-1.js9
1 files changed, 3 insertions, 6 deletions
diff --git a/test/parallel/test-cluster-dgram-1.js b/test/parallel/test-cluster-dgram-1.js
index 9e0ed3dfb9..3688c67f6c 100644
--- a/test/parallel/test-cluster-dgram-1.js
+++ b/test/parallel/test-cluster-dgram-1.js
@@ -21,6 +21,9 @@
'use strict';
const common = require('../common');
+if (common.isWindows)
+ common.skip('dgram clustering is currently not supported on Windows.');
+
const NUM_WORKERS = 4;
const PACKETS_PER_WORKER = 10;
@@ -28,12 +31,6 @@ const assert = require('assert');
const cluster = require('cluster');
const dgram = require('dgram');
-
-if (common.isWindows) {
- common.skip('dgram clustering is currently not supported on Windows.');
- return;
-}
-
if (cluster.isMaster)
master();
else